Object/Trait

fs2

Chunk

Related Docs: trait Chunk | package fs2

Permalink

object Chunk

Source
Chunk.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Chunk
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class Booleans extends Chunk[Boolean]

    Permalink

    Specialized chunk supporting unboxed operations on booleans.

  2. final class Bytes extends Chunk[Byte]

    Permalink

    Specialized chunk supporting unboxed operations on bytes.

  3. final class Doubles extends Chunk[Double]

    Permalink

    Specialized chunk supporting unboxed operations on doubles.

  4. final class Longs extends Chunk[Long]

    Permalink

    Specialized chunk supporting unboxed operations on longs.

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def booleans(values: Array[Boolean], offset: Int, size: Int): Chunk[Boolean]

    Permalink

    Creates a chunk backed by an unboxed array.

  6. def booleans(values: Array[Boolean]): Chunk[Boolean]

    Permalink

    Creates a chunk backed by an unboxed array.

  7. def bytes(values: Array[Byte], offset: Int, size: Int): Chunk[Byte]

    Permalink

    Creates a chunk backed by an unboxed array.

  8. def bytes(values: Array[Byte]): Chunk[Byte]

    Permalink

    Creates a chunk backed by an unboxed array.

  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def concat[A](chunks: Seq[Chunk[A]]): Chunk[A]

    Permalink

    Concatenates the specified sequence of chunks in to a single chunk.

  11. def concatBooleans(chunks: Seq[Chunk[Boolean]]): Chunk[Boolean]

    Permalink

    Concatenates the specified sequence of boolean chunks in to a single chunk.

  12. def concatBytes(chunks: Seq[Chunk[Byte]]): Chunk[Byte]

    Permalink

    Concatenates the specified sequence of byte chunks in to a single chunk.

  13. def concatDoubles(chunks: Seq[Chunk[Double]]): Chunk[Double]

    Permalink

    Concatenates the specified sequence of double chunks in to a single chunk.

  14. def concatLongs(chunks: Seq[Chunk[Long]]): Chunk[Long]

    Permalink

    Concatenates the specified sequence of long chunks in to a single chunk.

  15. def doubles(values: Array[Double], offset: Int, size: Int): Chunk[Double]

    Permalink

    Creates a chunk backed by an unboxed array.

  16. def doubles(values: Array[Double]): Chunk[Double]

    Permalink

    Creates a chunk backed by an unboxed array.

  17. val empty: Chunk[Nothing]

    Permalink

    Empty chunk.

  18. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  23. def indexedSeq[A](a: IndexedSeq[A]): Chunk[A]

    Permalink

    Creates a chunk from an indexed sequence, using the existing index-based access provided by the indexed sequence.

  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. def longs(values: Array[Long], offset: Int, size: Int): Chunk[Long]

    Permalink

    Creates a chunk backed by an unboxed array.

  26. def longs(values: Array[Long]): Chunk[Long]

    Permalink

    Creates a chunk backed by an unboxed array.

  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  30. def seq[A](a: Seq[A]): Chunk[A]

    Permalink

    Creates a chunk from a sequence, using a lazy copy of the sequence to support indexed based access.

  31. def singleton[A](a: A): NonEmptyChunk[A]

    Permalink

    Creates a chunk of one element.

  32. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  33. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped