Unrolled

class Unrolled[T]

Unrolled buffer node.

Source:
UnrolledBuffer.scala
class Object
trait Matchable
class Any

Value members

Concrete methods

final def append(elem: T): Unrolled[T]
final def apply(idx: Int): T
def bind(thathead: Unrolled[T]): Boolean
def foreach[U](f: T => U): Unit
final def insertAll(idx: Int, t: IterableOnce[T], buffer: UnrolledBuffer[T]): Int
final def locate(idx: Int): Unrolled[T]
def mapInPlace(f: T => T): Unit
def prepend(elem: T): Unrolled[T]
final def remove(idx: Int, buffer: UnrolledBuffer[T]): T
final def subtractOne(elem: T, buffer: UnrolledBuffer[T]): Boolean
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Returns:

a string representation of the object.

Definition Classes
Source:
UnrolledBuffer.scala
final def update(idx: Int, newelem: T): Unit