Class/Object

fs2.Chunk

Boxed

Related Docs: object Boxed | package Chunk

Permalink

final case class Boxed[O](values: Array[O], offset: Int, length: Int) extends Chunk[O] with Product with Serializable

Source
Chunk.scala
Linear Supertypes
Product, Equals, Chunk[O], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Boxed
  2. Product
  3. Equals
  4. Chunk
  5. Serializable
  6. Serializable
  7. AnyRef
  8. 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 Boxed(values: Array[O], offset: Int, length: 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 Boxed[O] to any2stringadd[Boxed[O]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Boxed[O], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Boxed[O] to ArrowAssoc[Boxed[O]] 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): O

    Permalink

    Returns the element at the specified index.

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

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

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def drop(n: Int): Chunk[O]

    Permalink

    Drops the first n elements of this chunk.

    Drops the first n elements of this chunk.

    Definition Classes
    BoxedChunk
  10. def ensuring(cond: (Boxed[O]) ⇒ Boolean, msg: ⇒ Any): Boxed[O]

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

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

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

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

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

    Permalink
    Definition Classes
    Chunk → AnyRef → Any
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def foldLeft[A](init: A)(f: (A, O) ⇒ A): A

    Permalink

    Left-folds the elements of this chunk.

    Left-folds the elements of this chunk.

    Definition Classes
    Chunk
  18. def foreach(f: (O) ⇒ 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
  19. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Boxed[O] to StringFormat[Boxed[O]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Permalink
    Definition Classes
    Chunk → AnyRef → Any
  22. def head: Option[O]

    Permalink

    Gets the first element of this chunk.

    Gets the first element of this chunk.

    Definition Classes
    Chunk
  23. def indexWhere(p: (O) ⇒ 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
  24. final def isEmpty: Boolean

    Permalink

    True if size is zero, false otherwise.

    True if size is zero, false otherwise.

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

    Permalink
    Definition Classes
    Any
  26. def last: Option[O]

    Permalink

    Gets the last element of this chunk.

    Gets the last element of this chunk.

    Definition Classes
    Chunk
  27. val length: Int

    Permalink
  28. def map[O2](f: (O) ⇒ 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
  29. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  30. final def nonEmpty: Boolean

    Permalink

    False if size is zero, true otherwise.

    False if size is zero, true otherwise.

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

    Permalink
    Definition Classes
    AnyRef
  32. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  33. val offset: Int

    Permalink
  34. def size: Int

    Permalink

    Returns the number of elements in this chunk.

    Returns the number of elements in this chunk.

    Definition Classes
    BoxedChunk
  35. def splitAt(n: Int): (Chunk[O], Chunk[O])

    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
  36. def splitAtChunk_(n: Int): (Chunk[O], Chunk[O])

    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
    BoxedChunk
  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  38. def take(n: Int): Chunk[O]

    Permalink

    Takes the first n elements of this chunk.

    Takes the first n elements of this chunk.

    Definition Classes
    BoxedChunk
  39. def toArray[O2 >: O](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
    BoxedChunk
  40. def toBooleans[B >: O](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
  41. def toByteBuffer[B >: O](implicit ev: =:=[B, Byte]): java.nio.ByteBuffer

    Permalink
    Definition Classes
    Chunk
  42. def toBytes[B >: O](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
  43. def toDoubles[B >: O](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
  44. def toFloats[B >: O](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
  45. def toInts[B >: O](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
  46. def toList: List[O]

    Permalink

    Converts this chunk to a list.

    Converts this chunk to a list.

    Definition Classes
    Chunk
  47. def toLongs[B >: O](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
  48. def toSegment: Segment[O, Unit]

    Permalink

    Converts this chunk to a segment.

    Converts this chunk to a segment.

    Definition Classes
    Chunk
  49. def toShorts[B >: O](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
  50. def toString(): String

    Permalink
    Definition Classes
    Chunk → AnyRef → Any
  51. def toVector: Vector[O]

    Permalink

    Converts this chunk to a vector.

    Converts this chunk to a vector.

    Definition Classes
    Chunk
  52. val values: Array[O]

    Permalink
  53. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  56. def [B](y: B): (Boxed[O], B)

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

Inherited from Product

Inherited from Equals

Inherited from Chunk[O]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Boxed[O] to any2stringadd[Boxed[O]]

Inherited by implicit conversion StringFormat from Boxed[O] to StringFormat[Boxed[O]]

Inherited by implicit conversion Ensuring from Boxed[O] to Ensuring[Boxed[O]]

Inherited by implicit conversion ArrowAssoc from Boxed[O] to ArrowAssoc[Boxed[O]]

Ungrouped