ForgeArray

<auto-generated stub>

Infix methods

def apply(i: Index): T

Returns the element at the given index


def flatten(): ForgeArray[T]

def length(): Index

Returns the length of this Array


def map(y: T => R): ForgeArray[R]

def mkString(y: String): String

def reduce(y: (T, T) => T)(implicit ev0: Coll[T]): T

def update(i: Index, x: T): Unit

Updates the array at the given index


def zip(y: ForgeArray[S])(z: (T, S) => R): ForgeArray[R]

def zipWithIndex(): ForgeArray[Tup2[T,:doc:Index <fixpt>]]