Packages

class Unrolled[T] extends AnyRef

Unrolled buffer node.

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

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: IterableOnce[T], buffer: UnrolledBuffer[T]): Int
    Annotations
    @tailrec()
  8. final def locate(idx: Int): Unrolled[T]
    Annotations
    @tailrec()
  9. def mapInPlace(f: (T) => T): Unit
  10. var next: Unrolled[T]
  11. def prepend(elem: T): Unrolled[T]
  12. final def remove(idx: Int, buffer: UnrolledBuffer[T]): T
    Annotations
    @tailrec()
  13. var size: Int
  14. final def subtractOne(elem: T, buffer: UnrolledBuffer[T]): Boolean
    Annotations
    @tailrec()
  15. 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
  16. final def update(idx: Int, newelem: T): Unit
    Annotations
    @tailrec()