package bufferandslice
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
final
class
ArrayBuffer[T] extends ArrayBufferLike[T]
Growable, mutable array of values.
Growable, mutable array of values.
- T
type of the underlying array items
-
trait
ArrayBufferLike[T] extends Buffer[T]
Common buffer functions impl for array-backend buffers.
-
abstract
class
ArraySlice[T] extends Slice[T]
Lazy, immutable slice of an underlying array.
Lazy, immutable slice of an underlying array.
- T
type of the array's items
-
trait
Buffer[T] extends (Int) ⇒ T
Mutable indexed buffer abstraction.
-
final
class
IntBuffer extends ArrayBufferLike[Int]
Growable, mutable array of integers.
Growable, mutable array of integers. Unlike ArrayBuffer allows to address elements outside the range.
-
final
class
IntSlice extends Slice[Int]
Lazy, specialized slice of the array of integers.
-
trait
Slice[T] extends (Int) ⇒ T
Lazy, immutable slice of a sequence of values.
Lazy, immutable slice of a sequence of values.
- T
type of the items of the sequence.