Packages

object ReArray

The ReArray object is the companion object for the ReArray class.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReArray
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply[A](a: Array[A])(implicit arg0: ClassTag[A]): ReArray[A]

    Create a ReArray from an Array.

    Create a ReArray from an Array.

    a

    the Array to be converted

  2. def fill[A](n: Int)(elem: ⇒ A)(implicit arg0: ClassTag[A]): ReArray[A]

    Create a ReArray of type A and dimension 'n' with its values determined by the 'elem' function.

    Create a ReArray of type A and dimension 'n' with its values determined by the 'elem' function.

    n

    the size of the ReArray

    elem

    function giving the elements for the ReArray

  3. def ofDim[A](n: Int)(implicit arg0: ClassTag[A]): ReArray[A]

    Create a ReArray with dimension 'n'.

    Create a ReArray with dimension 'n'.

    n

    the size of the ReArray