Class/Object

fs2.Chunk

ShortBuffer

Related Docs: object ShortBuffer | package Chunk

Permalink

final case class ShortBuffer(buf: java.nio.ShortBuffer, offset: Int, size: Int) extends Buffer[ShortBuffer, java.nio.ShortBuffer, Short] with Product with Serializable

Source
Chunk.scala
Linear Supertypes
Product, Equals, Buffer[ShortBuffer, java.nio.ShortBuffer, Short], KnownElementType[Short], Chunk[Short], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ShortBuffer
  2. Product
  3. Equals
  4. Buffer
  5. KnownElementType
  6. Chunk
  7. Serializable
  8. Serializable
  9. AnyRef
  10. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ShortBuffer(buf: java.nio.ShortBuffer, offset: Int, size: Int)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ShortBuffer to any2stringadd[ShortBuffer] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ShortBuffer, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ShortBuffer to ArrowAssoc[ShortBuffer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def apply(i: Int): Short

    Permalink

    Returns the element at the specified index.

    Returns the element at the specified index. Throws if index is < 0 or >= size.

    Definition Classes
    BufferChunk
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. val buf: java.nio.ShortBuffer

    Permalink
  9. def buffer(b: java.nio.ShortBuffer): ShortBuffer

    Permalink
    Definition Classes
    ShortBufferBuffer
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  11. def collect[O2](pf: PartialFunction[Short, O2]): Chunk[O2]

    Permalink

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

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

    Definition Classes
    Chunk
  12. def copyToArray[O2 >: Short](xs: Array[O2], start: Int): Unit

    Permalink

    Copies the elements of this chunk in to the specified array at the specified start index.

    Copies the elements of this chunk in to the specified array at the specified start index.

    Definition Classes
    ShortBufferBufferChunk
  13. def drop(n: Int): Chunk[Short]

    Permalink

    Drops the first n elements of this chunk.

    Drops the first n elements of this chunk.

    Definition Classes
    BufferChunk
  14. def duplicate(b: java.nio.ShortBuffer): java.nio.ShortBuffer

    Permalink
    Definition Classes
    ShortBufferBuffer
  15. def elementClassTag: ClassTag[Short]

    Permalink
    Definition Classes
    BufferKnownElementType
  16. def ensuring(cond: (ShortBuffer) ⇒ Boolean, msg: ⇒ Any): ShortBuffer

    Permalink
    Implicit information
    This member is added by an implicit conversion from ShortBuffer to Ensuring[ShortBuffer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: (ShortBuffer) ⇒ Boolean): ShortBuffer

    Permalink
    Implicit information
    This member is added by an implicit conversion from ShortBuffer to Ensuring[ShortBuffer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean, msg: ⇒ Any): ShortBuffer

    Permalink
    Implicit information
    This member is added by an implicit conversion from ShortBuffer to Ensuring[ShortBuffer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean): ShortBuffer

    Permalink
    Implicit information
    This member is added by an implicit conversion from ShortBuffer to Ensuring[ShortBuffer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. def equals(a: Any): Boolean

    Permalink
    Definition Classes
    Chunk → AnyRef → Any
  22. def filter(p: (Short) ⇒ Boolean): Chunk[Short]

    Permalink

    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.

    Definition Classes
    Chunk
  23. def find(p: (Short) ⇒ Boolean): Option[Short]

    Permalink

    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.

    Definition Classes
    Chunk
  24. def flatMap[O2](f: (Short) ⇒ Chunk[O2]): Chunk[O2]

    Permalink

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

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

    Definition Classes
    Chunk
  25. def foldLeft[A](init: A)(f: (A, Short) ⇒ A): A

    Permalink

    Left-folds the elements of this chunk.

    Left-folds the elements of this chunk.

    Definition Classes
    Chunk
  26. def forall(p: (Short) ⇒ Boolean): Boolean

    Permalink

    Returns true if the predicate passes for all elements.

    Returns true if the predicate passes for all elements.

    Definition Classes
    Chunk
  27. def foreach(f: (Short) ⇒ Unit): Unit

    Permalink

    Invokes the supplied function for each element of this chunk.

    Invokes the supplied function for each element of this chunk.

    Definition Classes
    Chunk
  28. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ShortBuffer to StringFormat[ShortBuffer] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  29. def get(b: java.nio.ShortBuffer, dest: Array[Short], offset: Int, length: Int): java.nio.ShortBuffer

    Permalink
    Definition Classes
    ShortBufferBuffer
  30. def get(b: java.nio.ShortBuffer, n: Int): Short

    Permalink
    Definition Classes
    ShortBufferBuffer
  31. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  32. def hashCode(): Int

    Permalink
    Definition Classes
    Chunk → AnyRef → Any
  33. def head: Option[Short]

    Permalink

    Gets the first element of this chunk.

    Gets the first element of this chunk.

    Definition Classes
    Chunk
  34. def indexWhere(p: (Short) ⇒ Boolean): Option[Int]

    Permalink

    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.

    Definition Classes
    Chunk
  35. final def isEmpty: Boolean

    Permalink

    True if size is zero, false otherwise.

    True if size is zero, false otherwise.

    Definition Classes
    Chunk
  36. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  37. def iterator: Iterator[Short]

    Permalink

    Creates an iterator that iterates the elements of this chunk.

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

    Definition Classes
    Chunk
  38. def knownElementType[B](implicit classTag: ClassTag[B]): Boolean

    Permalink

    Returns true if this chunk is known to have elements of type B.

    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.

    Definition Classes
    Chunk
  39. def last: Option[Short]

    Permalink

    Gets the last element of this chunk.

    Gets the last element of this chunk.

    Definition Classes
    Chunk
  40. def map[O2](f: (Short) ⇒ O2): Chunk[O2]

    Permalink

    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.

    Definition Classes
    Chunk
  41. def mapAccumulate[S, O2](init: S)(f: (S, Short) ⇒ (S, O2)): (S, Chunk[O2])

    Permalink

    Maps the supplied stateful function over each element, outputting the final state and the accumulated outputs.

    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.

    Definition Classes
    Chunk
  42. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  43. final def nonEmpty: Boolean

    Permalink

    False if size is zero, true otherwise.

    False if size is zero, true otherwise.

    Definition Classes
    Chunk
  44. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  45. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  46. val offset: Int

    Permalink
    Definition Classes
    ShortBufferBuffer
  47. def readOnly(b: java.nio.ShortBuffer): java.nio.ShortBuffer

    Permalink
    Definition Classes
    ShortBufferBuffer
  48. def reverseIterator: Iterator[Short]

    Permalink

    Creates an iterator that iterates the elements of this chunk in reverse order.

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

    Definition Classes
    Chunk
  49. def scanLeft[O2](z: O2)(f: (O2, Short) ⇒ O2): Chunk[O2]

    Permalink

    Like foldLeft but emits each intermediate result of f.

    Like foldLeft but emits each intermediate result of f.

    Definition Classes
    Chunk
  50. def scanLeftCarry[O2](z: O2)(f: (O2, Short) ⇒ O2): (Chunk[O2], O2)

    Permalink

    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).

    Definition Classes
    Chunk
  51. def scanLeft_[O2](z: O2, emitFinal: Boolean)(f: (O2, Short) ⇒ O2): (Chunk[O2], O2)

    Permalink
    Attributes
    protected
    Definition Classes
    Chunk
  52. val size: Int

    Permalink

    Returns the number of elements in this chunk.

    Returns the number of elements in this chunk.

    Definition Classes
    ShortBufferBufferChunk
  53. def splitAt(n: Int): (Chunk[Short], Chunk[Short])

    Permalink

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

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

    Definition Classes
    Chunk
  54. def splitAtChunk_(n: Int): (ShortBuffer, ShortBuffer)

    Permalink

    Splits this chunk in to two chunks at the specified index n, which is guaranteed to be in-bounds.

    Splits this chunk in to two chunks at the specified index n, which is guaranteed to be in-bounds.

    Attributes
    protected
    Definition Classes
    BufferChunk
  55. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  56. def take(n: Int): Chunk[Short]

    Permalink

    Takes the first n elements of this chunk.

    Takes the first n elements of this chunk.

    Definition Classes
    BufferChunk
  57. def toArray[O2 >: Short](implicit arg0: ClassTag[O2]): Array[O2]

    Permalink

    Copies the elements of this chunk to an array.

    Copies the elements of this chunk to an array.

    Definition Classes
    BufferChunk
  58. def toBooleans[B >: Short](implicit ev: =:=[B, Boolean]): Booleans

    Permalink

    Converts this chunk to a Chunk.Booleans, allowing access to the underlying array of elements.

    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.

    Definition Classes
    Chunk
  59. def toByteBuffer[B >: Short](implicit ev: =:=[B, Byte]): java.nio.ByteBuffer

    Permalink

    Converts this chunk to a java.nio.ByteBuffer.

    Converts this chunk to a java.nio.ByteBuffer.

    Definition Classes
    Chunk
  60. def toBytes[B >: Short](implicit ev: =:=[B, Byte]): Bytes

    Permalink

    Converts this chunk to a Chunk.Bytes, allowing access to the underlying array of elements.

    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.

    Definition Classes
    Chunk
  61. def toChain: Chain[Short]

    Permalink

    Converts this chunk to a chain.

    Converts this chunk to a chain.

    Definition Classes
    Chunk
  62. def toDoubles[B >: Short](implicit ev: =:=[B, Double]): Doubles

    Permalink

    Converts this chunk to a Chunk.Doubles, allowing access to the underlying array of elements.

    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.

    Definition Classes
    Chunk
  63. def toFloats[B >: Short](implicit ev: =:=[B, Float]): Floats

    Permalink

    Converts this chunk to a Chunk.Floats, allowing access to the underlying array of elements.

    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.

    Definition Classes
    Chunk
  64. def toInts[B >: Short](implicit ev: =:=[B, Int]): Ints

    Permalink

    Converts this chunk to a Chunk.Ints, allowing access to the underlying array of elements.

    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.

    Definition Classes
    Chunk
  65. def toList: List[Short]

    Permalink

    Converts this chunk to a list.

    Converts this chunk to a list.

    Definition Classes
    Chunk
  66. def toLongs[B >: Short](implicit ev: =:=[B, Long]): Longs

    Permalink

    Converts this chunk to a Chunk.Longs, allowing access to the underlying array of elements.

    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.

    Definition Classes
    Chunk
  67. def toShorts[B >: Short](implicit ev: =:=[B, Short]): Shorts

    Permalink

    Converts this chunk to a Chunk.Shorts, allowing access to the underlying array of elements.

    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.

    Definition Classes
    Chunk
  68. def toString(): String

    Permalink
    Definition Classes
    Chunk → AnyRef → Any
  69. def toVector: Vector[Short]

    Permalink

    Converts this chunk to a vector.

    Converts this chunk to a vector.

    Definition Classes
    Chunk
  70. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  71. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  72. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  73. def zip[O2](that: Chunk[O2]): Chunk[(Short, O2)]

    Permalink

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

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

    Definition Classes
    Chunk
  74. def zipWith[O2, O3](that: Chunk[O2])(f: (Short, O2) ⇒ O3): Chunk[O3]

    Permalink

    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.

    Definition Classes
    Chunk
  75. def [B](y: B): (ShortBuffer, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ShortBuffer to ArrowAssoc[ShortBuffer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Product

Inherited from Equals

Inherited from Buffer[ShortBuffer, java.nio.ShortBuffer, Short]

Inherited from KnownElementType[Short]

Inherited from Chunk[Short]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ShortBuffer to any2stringadd[ShortBuffer]

Inherited by implicit conversion StringFormat from ShortBuffer to StringFormat[ShortBuffer]

Inherited by implicit conversion Ensuring from ShortBuffer to Ensuring[ShortBuffer]

Inherited by implicit conversion ArrowAssoc from ShortBuffer to ArrowAssoc[ShortBuffer]

Ungrouped