Packages

object Chunk

Source
Chunk.scala
Linear Supertypes
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]

    Specialized chunk supporting unboxed operations on booleans.

  2. final class Bytes extends Chunk[Byte]

    Specialized chunk supporting unboxed operations on bytes.

  3. final class Doubles extends Chunk[Double]

    Specialized chunk supporting unboxed operations on doubles.

  4. final class Longs extends Chunk[Long]

    Specialized chunk supporting unboxed operations on longs.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def booleans(values: Array[Boolean], offset: Int, size: Int): Chunk[Boolean]

    Creates a chunk backed by an unboxed array.

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

    Creates a chunk backed by an unboxed array.

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

    Creates a chunk backed by an unboxed array.

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

    Creates a chunk backed by an unboxed array.

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

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

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

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

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

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

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

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

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

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

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

    Creates a chunk backed by an unboxed array.

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

    Creates a chunk backed by an unboxed array.

  17. val empty: Chunk[Nothing]

    Empty chunk.

  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  20. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  23. def indexedSeq[A](a: IndexedSeq[A]): Chunk[A]

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

  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. def longs(values: Array[Long], offset: Int, size: Int): Chunk[Long]

    Creates a chunk backed by an unboxed array.

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

    Creates a chunk backed by an unboxed array.

  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  30. def seq[A](a: Seq[A]): Chunk[A]

    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]

    Creates a chunk of one element.

  32. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  33. def toString(): String
    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped