ShortBuffer

final case class ShortBuffer(buf: ShortBuffer, offset: Int, size: Int) extends Buffer[ShortBuffer, ShortBuffer, Short]
Companion
object
trait Product
trait Equals
class Buffer[ShortBuffer, ShortBuffer, Short]
trait KnownElementType[Short]
class Chunk[Short]
trait ChunkPlatform[Short]
trait Serializable
class Object
trait Matchable
class Any

Value members

Concrete methods

def buffer(b: ShortBuffer): ShortBuffer
override def copyToArray[O2 >: Short](xs: Array[O2], start: Int): Unit
Definition Classes
def duplicate(b: ShortBuffer): ShortBuffer
def get(b: ShortBuffer, n: Int): Short
override def get(b: ShortBuffer, dest: Array[Short], offset: Int, length: Int): ShortBuffer
Definition Classes
def readOnly(b: ShortBuffer): ShortBuffer

Inherited methods

def apply(i: Int): Short
Inherited from
Buffer
def collect[O2](pf: PartialFunction[Short, O2]): Chunk[O2]

More efficient version of filter(pf.isDefinedAt).map(pf).

More efficient version of filter(pf.isDefinedAt).map(pf).

Inherited from
Chunk
override def drop(n: Int): Chunk[Short]
Definition Classes
Inherited from
Buffer
def elementClassTag: ClassTag[Short]
Inherited from
Buffer
override def equals(a: Any): Boolean
Definition Classes
Chunk -> Any
Inherited from
Chunk
def filter(p: Short => Boolean): Chunk[Short]

Returns a chunk that has only the elements that satisfy the supplied predicate.

Returns a chunk that has only the elements that satisfy the supplied predicate.

Inherited from
Chunk
def find(p: Short => Boolean): Option[Short]

Returns the first element for which the predicate returns true or None if no elements satisfy the predicate.

Returns the first element for which the predicate returns true or None if no elements satisfy the predicate.

Inherited from
Chunk
def flatMap[O2](f: Short => Chunk[O2]): Chunk[O2]

Maps f over the elements of this chunk and concatenates the result.

Maps f over the elements of this chunk and concatenates the result.

Inherited from
Chunk
def foldLeft[A](init: A)(f: (A, Short) => A): A

Left-folds the elements of this chunk.

Left-folds the elements of this chunk.

Inherited from
Chunk
def forall(p: Short => Boolean): Boolean

Returns true if the predicate passes for all elements.

Returns true if the predicate passes for all elements.

Inherited from
Chunk
def foreach(f: Short => Unit): Unit

Invokes the supplied function for each element of this chunk.

Invokes the supplied function for each element of this chunk.

Inherited from
Chunk
override def hashCode: Int
Definition Classes
Chunk -> Any
Inherited from
Chunk
def head: Option[Short]

Gets the first element of this chunk.

Gets the first element of this chunk.

Inherited from
Chunk
def indexWhere(p: Short => Boolean): Option[Int]

Returns the index of the first element which passes the specified predicate (i.e., p(i) == true) or None if no elements pass the predicate.

Returns the index of the first element which passes the specified predicate (i.e., p(i) == true) or None if no elements pass the predicate.

Inherited from
Chunk
final def isEmpty: Boolean

True if size is zero, false otherwise.

True if size is zero, false otherwise.

Inherited from
Chunk
def iterator: Iterator[Short]

Creates an iterator that iterates the elements of this chunk. The returned iterator is not thread safe.

Creates an iterator that iterates the elements of this chunk. The returned iterator is not thread safe.

Inherited from
Chunk
def knownElementType[B](implicit classTag: ClassTag[B]): Boolean

Returns true if this chunk is known to have elements of type B. This is determined by checking if the chunk type mixes in Chunk.KnownElementType.

Returns true if this chunk is known to have elements of type B. This is determined by checking if the chunk type mixes in Chunk.KnownElementType.

Inherited from
Chunk
def last: Option[Short]

Gets the last element of this chunk.

Gets the last element of this chunk.

Inherited from
Chunk
def map[O2](f: Short => O2): Chunk[O2]

Creates a new chunk by applying f to each element in this chunk.

Creates a new chunk by applying f to each element in this chunk.

Inherited from
Chunk
def mapAccumulate[S, O2](init: S)(f: (S, Short) => (S, O2)): (S, Chunk[O2])

Maps the supplied stateful function over each element, outputting the final state and the accumulated outputs. The first invocation of f uses init as the input state value. Each successive invocation uses the output state of the previous invocation.

Maps the supplied stateful function over each element, outputting the final state and the accumulated outputs. The first invocation of f uses init as the input state value. Each successive invocation uses the output state of the previous invocation.

Inherited from
Chunk
final def nonEmpty: Boolean

False if size is zero, true otherwise.

False if size is zero, true otherwise.

Inherited from
Chunk
def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product
def reverseIterator: Iterator[Short]

Creates an iterator that iterates the elements of this chunk in reverse order. The returned iterator is not thread safe.

Creates an iterator that iterates the elements of this chunk in reverse order. The returned iterator is not thread safe.

Inherited from
Chunk
def scanLeft[O2](z: O2)(f: (O2, Short) => O2): Chunk[O2]

Like foldLeft but emits each intermediate result of f.

Like foldLeft but emits each intermediate result of f.

Inherited from
Chunk
def scanLeftCarry[O2](z: O2)(f: (O2, Short) => O2): (Chunk[O2], O2)

Like scanLeft except the final element is emitted as a standalone value instead of as the last element of the accumulated chunk.

Like scanLeft except the final element is emitted as a standalone value instead of as the last element of the accumulated chunk.

Equivalent to val b = a.scanLeft(z)(f); val (c, carry) = b.splitAt(b.size - 1).

Inherited from
Chunk
def splitAt(n: Int): (Chunk[Short], Chunk[Short])

Splits this chunk in to two chunks at the specified index.

Splits this chunk in to two chunks at the specified index.

Inherited from
Chunk
protected def splitAtChunk_(n: Int): (ShortBuffer, ShortBuffer)
Inherited from
Buffer
override def take(n: Int): Chunk[Short]
Definition Classes
Inherited from
Buffer
override def toArray[O2 >: Short](implicit evidence$7: ClassTag[O2]): Array[O2]
Definition Classes
Inherited from
Buffer
def toArraySeq[O2 >: Short](implicit evidence$1: ClassTag[O2]): ArraySeq[O2]
Inherited from
ChunkPlatform
def toArraySeqUntagged: ArraySeq[Short]
Inherited from
ChunkPlatform
def toBitVector[B >: Short](implicit ev: B =:= Byte): BitVector

Converts this chunk to a scodec-bits BitVector.

Converts this chunk to a scodec-bits BitVector.

Inherited from
Chunk
def toBooleans[B >: Short](implicit ev: B =:= Boolean): Booleans

Converts this chunk to a Chunk.Booleans, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of booleans, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Converts this chunk to a Chunk.Booleans, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of booleans, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Inherited from
Chunk
def toByteBuffer[B >: Short](implicit ev: B =:= Byte): ByteBuffer

Converts this chunk to a java.nio.ByteBuffer.

Converts this chunk to a java.nio.ByteBuffer.

Inherited from
Chunk
def toByteVector[B >: Short](implicit ev: B =:= Byte): ByteVector

Converts this chunk to a scodec-bits ByteVector.

Converts this chunk to a scodec-bits ByteVector.

Inherited from
Chunk
def toBytes[B >: Short](implicit ev: B =:= Byte): Bytes

Converts this chunk to a Chunk.Bytes, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of bytes, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Converts this chunk to a Chunk.Bytes, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of bytes, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Inherited from
Chunk
def toChain: Chain[Short]

Converts this chunk to a chain.

Converts this chunk to a chain.

Inherited from
Chunk
def toDoubles[B >: Short](implicit ev: B =:= Double): Doubles

Converts this chunk to a Chunk.Doubles, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of doubles, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Converts this chunk to a Chunk.Doubles, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of doubles, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Inherited from
Chunk
def toFloats[B >: Short](implicit ev: B =:= Float): Floats

Converts this chunk to a Chunk.Floats, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of doubles, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Converts this chunk to a Chunk.Floats, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of doubles, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Inherited from
Chunk
def toInts[B >: Short](implicit ev: B =:= Int): Ints

Converts this chunk to a Chunk.Ints, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of bytes, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Converts this chunk to a Chunk.Ints, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of bytes, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Inherited from
Chunk
def toList: List[Short]

Converts this chunk to a list.

Converts this chunk to a list.

Inherited from
Chunk
def toLongs[B >: Short](implicit ev: B =:= Long): Longs

Converts this chunk to a Chunk.Longs, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of longs, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Converts this chunk to a Chunk.Longs, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of longs, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Inherited from
Chunk
def toNel: Option[NonEmptyList[Short]]

Converts this chunk to a NonEmptyList

Converts this chunk to a NonEmptyList

Inherited from
Chunk
def toShorts[B >: Short](implicit ev: B =:= Short): Shorts

Converts this chunk to a Chunk.Shorts, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of bytes, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Converts this chunk to a Chunk.Shorts, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of bytes, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.

Inherited from
Chunk
override def toString: String
Definition Classes
Chunk -> Any
Inherited from
Chunk
def toVector: Vector[Short]

Converts this chunk to a vector.

Converts this chunk to a vector.

Inherited from
Chunk
def zip[O2](that: Chunk[O2]): Chunk[(Short, O2)]

Zips this chunk the the supplied chunk, returning a chunk of tuples.

Zips this chunk the the supplied chunk, returning a chunk of tuples.

Inherited from
Chunk
def zipWith[O2, O3](that: Chunk[O2])(f: (Short, O2) => O3): Chunk[O3]

Zips this chunk with the supplied chunk, passing each pair to f, resulting in an output chunk.

Zips this chunk with the supplied chunk, passing each pair to f, resulting in an output chunk.

Inherited from
Chunk
def zipWithIndex: Chunk[(Short, Int)]

Zips the elements of the input chunk with its indices, and returns the new chunk.

Zips the elements of the input chunk with its indices, and returns the new chunk.

Example
scala> Chunk("The", "quick", "brown", "fox").zipWithIndex.toList
res0: List[(String, Int)] = List((The,0), (quick,1), (brown,2), (fox,3))
Inherited from
Chunk