IndexRange

class IndexRange(val delegate: IndexRange) extends SFXDelegate[IndexRange]
Companion
object
trait SFXDelegate[IndexRange]
class Object
trait Matchable
class Any

Value members

Constructors

def this(range: IndexRange)

Creates an instance of IndexRange by copying the values from the given IndexRange object.

Creates an instance of IndexRange by copying the values from the given IndexRange object.

def this(start: Int, end: Int)

Creates an instance of IndexRange representing the range between start and end.

Creates an instance of IndexRange representing the range between start and end.

Concrete methods

def end: Int

Returns the end position of the range (exclusive).

Returns the end position of the range (exclusive).

def length: Int

Returns the length of the range.

Returns the length of the range.

def start: Int

Returns the start position of the range.

Returns the start position of the range.

Inherited methods

override def equals(ref: Any): Boolean

Verifies if a object is equals to this delegate.

Verifies if a object is equals to this delegate.

Value Params
ref

Object to be compared.

Returns

if the other object is equals to this delegate or not.

Definition Classes
Inherited from
SFXDelegate
override def hashCode: Int
Returns

The delegate hashcode

Definition Classes
Inherited from
SFXDelegate
override def toString: String
Returns

Returns the original delegate's toString() adding a [SFX] prefix.

Definition Classes
Inherited from
SFXDelegate

Concrete fields

override val delegate: IndexRange