FrozenArray

@native @JSType
trait FrozenArray[+T] extends Iterable[T]

A frozen array type is a parameterized type whose values are references to objects that hold a fixed length array of unmodifiable values. The values in the array are of type T.

Since FrozenArray values are references, they are unlike sequence types, which are lists of values that are passed by value.

trait Iterable[T]
class Object
trait Any
class Object
trait Matchable
class Any

Value members

Concrete methods

@JSBracketAccess
def apply(index: Int): T

Inherited methods

def hasOwnProperty(v: String): Boolean
Inherited from:
Object
def isPrototypeOf(v: Object): Boolean
Inherited from:
Object
@JSName @ExposedJSMember
def jsIterator(): Iterator[T]
Inherited from:
Iterable
def propertyIsEnumerable(v: String): Boolean
Inherited from:
Object
def toLocaleString(): String
Inherited from:
Object
def valueOf(): Any
Inherited from:
Object

Concrete fields

val length: Int