Packages

class Unrolled[T] extends AnyRef

Unrolled buffer node.

Source
UnrolledBuffer.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Unrolled
  2. AnyRef
  3. Any
Implicitly
  1. by CollectionsHaveToParArray
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def append(elem: T): Unrolled[T]
    Annotations
    @tailrec()
  2. final def apply(idx: Int): T
    Annotations
    @tailrec()
  3. var array: Array[T]
  4. def bind(thathead: Unrolled[T]): Boolean
  5. val buff: UnrolledBuffer[T]
  6. def foreach[U](f: (T) ⇒ U): Unit
  7. final def insertAll(idx: Int, t: collection.Traversable[T], buffer: UnrolledBuffer[T]): Unit
    Annotations
    @tailrec()
  8. final def locate(idx: Int): Unrolled[T]
    Annotations
    @tailrec()
  9. var next: Unrolled[T]
  10. def prepend(elem: T): Unrolled[T]
  11. final def remove(idx: Int, buffer: UnrolledBuffer[T]): T
    Annotations
    @tailrec()
  12. var size: Int
  13. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from Unrolled[T] to CollectionsHaveToParArray[Unrolled[T], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (Unrolled[T]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  14. def toString(): String

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    Unrolled → AnyRef → Any
  15. final def update(idx: Int, newelem: T): Unit
    Annotations
    @tailrec()