com.github.arturopala.bufferandslice

Members list

Concise view

Type members

Classlikes

final class ArrayBuffer[T](initialArray: Array[T]) extends ArrayBufferLike[T]

Growable, mutable array of values.

Growable, mutable array of values.

Attributes

T

type of the underlying array items

Companion:
object
Graph
Supertypes
trait Buffer[T]
trait Int => T
class Object
trait Matchable
class Any

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
trait ArrayBufferLike[T] extends Buffer[T]

Common buffer functions impl for array-backend buffers.

Common buffer functions impl for array-backend buffers.

Attributes

Graph
Supertypes
trait Buffer[T]
trait Int => T
class Object
trait Matchable
class Any
Known subtypes
object ArrayOps

Array modifications helper.

Array modifications helper.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
final class ArraySlice[T] extends ArraySliceLike[T]

Lazy, immutable slice of an underlying array.

Lazy, immutable slice of an underlying array.

Attributes

T

type of the array's items

Note:

Truly immutable only if an underlying array kept private or if detached.

Companion:
object
Graph
Supertypes
trait Slice[T]
trait Int => T
class Object
trait Matchable
class Any
object ArraySlice

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
trait ArraySliceLike[T] extends Slice[T]

Common functions of an array-backed Slice.

Common functions of an array-backed Slice.

Attributes

T

type of the array's items

Note:

Truly immutable only if an underlying array kept private, or if detached.

Graph
Supertypes
trait Slice[T]
trait Int => T
class Object
trait Matchable
class Any
Known subtypes
class ArraySlice[T]
class ByteSlice
class IntSlice
trait Buffer[T] extends Int => T

Mutable indexed buffer abstraction. All modifications happens in-place.

Mutable indexed buffer abstraction. All modifications happens in-place.

In addition, the Buffer API offers both Stack- and List-like interfaces. For the purpose of the List-like processing, the head is a top element in the buffer.

Attributes

Companion:
object
Graph
Supertypes
trait Int => T
class Object
trait Matchable
class Any
Known subtypes
object Buffer

Buffer factory.

Buffer factory.

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Buffer.type
final class ByteBuffer(initialSize: Int) extends ArrayBufferLike[Byte]

Growable, mutable array of bytes.

Growable, mutable array of bytes.

Attributes

Companion:
object
Graph
Supertypes
trait ArrayBufferLike[Byte]
trait Buffer[Byte]
trait Int => Byte
class Object
trait Matchable
class Any
object ByteBuffer

ByteBuffer factory.

ByteBuffer factory.

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
final class ByteSlice extends ArraySliceLike[Byte]

Lazy, specialized slice of the array of bytes.

Lazy, specialized slice of the array of bytes.

Attributes

Note:

Truly immutable only if an underlying array kept private, or if detached.

Companion:
object
Graph
Supertypes
trait ArraySliceLike[Byte]
trait Slice[Byte]
trait Int => Byte
class Object
trait Matchable
class Any
object ByteSlice

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
final class DeferredArrayBuffer[T](initialLength: Int) extends ArrayBufferLike[T]

Growable, mutable array of values with deferred initialization.

Growable, mutable array of values with deferred initialization.

Attributes

T

type of the underlying array items

initialLength

initial length of the buffer

Note:

This is to avoid ClassTag parameters as much as possible, but comes with a price of a few rough corners. Especially, if your type parameter is non-primitive do not try to call asArray and assign result to variable, as it will raise ClassCastException, instead pass the array as a parameter or call methods on it.

Companion:
object
Graph
Supertypes
trait Buffer[T]
trait Int => T
class Object
trait Matchable
class Any

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Set of functions to update buffers or sequences of indexes values in order to match corresponding buffer operations. Useful to track values and structures movement during buffer modifications.

Set of functions to update buffers or sequences of indexes values in order to match corresponding buffer operations. Useful to track values and structures movement during buffer modifications.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
final class IntBuffer(initialSize: Int) extends ArrayBufferLike[Int]

Growable, mutable array of integers.

Growable, mutable array of integers.

Attributes

Companion:
object
Graph
Supertypes
trait ArrayBufferLike[Int]
trait Buffer[Int]
trait Int => Int
class Object
trait Matchable
class Any
object IntBuffer

IntBuffer factory.

IntBuffer factory.

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
final class IntSlice extends ArraySliceLike[Int]

Lazy, specialized slice of the array of integers.

Lazy, specialized slice of the array of integers.

Attributes

Note:

Truly immutable only if an underlying array kept private, or if detached.

Companion:
object
Graph
Supertypes
trait ArraySliceLike[Int]
trait Slice[Int]
trait Int => Int
class Object
trait Matchable
class Any
object IntSlice

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
abstract class LazyMapArraySlice[T] extends Slice[T]

Lazily mapped slice of an underlying array.

Lazily mapped slice of an underlying array.

Attributes

T

type of the array's items

Note:

Truly immutable only if an underlying array kept private, or if detached.

Companion:
object
Graph
Supertypes
trait Slice[T]
trait Int => T
class Object
trait Matchable
class Any

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
class RangeMapSlice[T] extends Slice[T]

Lazily mapped slice of an index range.

Lazily mapped slice of an index range.

Attributes

Companion:
object
Graph
Supertypes
trait Slice[T]
trait Int => T
class Object
trait Matchable
class Any

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
trait Slice[T] extends Int => T

Lazy and immutable slice of a sequence of values.

Lazy and immutable slice of a sequence of values.

Attributes

T

type of the items of the sequence.

Note:

As the slice usually wraps over a mutable structure, like an array or a java buffer, and it DOES NOT make an instant copy, any changes to the underlying source will directly affect the slice output unless detached. Detach is a one-time copy operation, and detached property is preserved across all operations returning a Slice.

Companion:
object
Graph
Supertypes
trait Int => T
class Object
trait Matchable
class Any
Known subtypes
class ArraySlice[T]
class ByteSlice
class IntSlice
class RangeMapSlice[T]
object Slice

Slice companion object. Host factory methods.

Slice companion object. Host factory methods.

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Slice.type