object Chunk extends IndexedSeqFactory[Chunk] with ChunkFactory with ChunkPlatformSpecific

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Chunk
  2. ChunkPlatformSpecific
  3. ChunkFactory
  4. IndexedSeqFactory
  5. SeqFactory
  6. TraversableFactory
  7. GenericSeqCompanion
  8. GenSeqFactory
  9. GenTraversableFactory
  10. GenericCompanion
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class AnyRefArray[A <: AnyRef](array: Array[A]) extends Arr[A] with Product with Serializable
  2. final case class BooleanArray(array: Array[Boolean]) extends Arr[Boolean] with Product with Serializable
  3. final case class ByteArray(array: Array[Byte]) extends Arr[Byte] with Product with Serializable
  4. final case class CharArray(array: Array[Char]) extends Arr[Char] with Product with Serializable
  5. type Coll = Chunk[_]
    Attributes
    protected[this]
    Definition Classes
    GenericCompanion
  6. final case class DoubleArray(array: Array[Double]) extends Arr[Double] with Product with Serializable
  7. final case class FloatArray(array: Array[Float]) extends Arr[Float] with Product with Serializable
  8. class GenericCanBuildFrom[A] extends CanBuildFrom[CC[_], A, CC[A]]
    Definition Classes
    GenTraversableFactory
  9. final case class IntArray(array: Array[Int]) extends Arr[Int] with Product with Serializable
  10. final case class LongArray(array: Array[Long]) extends Arr[Long] with Product with Serializable
  11. final case class ShortArray(array: Array[Short]) extends Arr[Short] with Product with Serializable

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. def ReusableCBF: GenericCanBuildFrom[Nothing]
    Definition Classes
    IndexedSeqFactory → GenTraversableFactory
  5. def apply[A](as: A*): Chunk[A]

    Returns a chunk from a number of values.

    Returns a chunk from a number of values.

    Definition Classes
    Chunk → GenericCompanion
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def concat[A](xss: Traversable[A]*): Chunk[A]
    Definition Classes
    GenTraversableFactory
  9. def empty[A]: Chunk[A]
    Definition Classes
    GenericCompanion
  10. val empty: Chunk[Nothing]

    Returns the empty chunk.

  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def fill[A](n: Int)(elem: ⇒ A): Chunk[A]
    Definition Classes
    Chunk → GenTraversableFactory
  14. def fill[A](n1: Int, n2: Int, n3: Int, n4: Int, n5: Int)(elem: ⇒ A): Chunk[Chunk[Chunk[Chunk[Chunk[A]]]]]
    Definition Classes
    GenTraversableFactory
  15. def fill[A](n1: Int, n2: Int, n3: Int, n4: Int)(elem: ⇒ A): Chunk[Chunk[Chunk[Chunk[A]]]]
    Definition Classes
    GenTraversableFactory
  16. def fill[A](n1: Int, n2: Int, n3: Int)(elem: ⇒ A): Chunk[Chunk[Chunk[A]]]
    Definition Classes
    GenTraversableFactory
  17. def fill[A](n1: Int, n2: Int)(elem: ⇒ A): Chunk[Chunk[A]]
    Definition Classes
    GenTraversableFactory
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def fromArray[A](array: Array[A]): Chunk[A]

    Returns a chunk backed by an array.

    Returns a chunk backed by an array.

    WARNING: The array must not be mutated after creating the chunk.

  20. def fromByteBuffer(buffer: ByteBuffer): Chunk[Byte]

    Returns a chunk backed by a java.nio.ByteBuffer.

  21. def fromCharBuffer(buffer: CharBuffer): Chunk[Char]

    Returns a chunk backed by a java.nio.CharBuffer.

  22. def fromDoubleBuffer(buffer: DoubleBuffer): Chunk[Double]

    Returns a chunk backed by a java.nio.DoubleBuffer.

  23. def fromFloatBuffer(buffer: FloatBuffer): Chunk[Float]

    Returns a chunk backed by a java.nio.FloatBuffer.

  24. def fromIntBuffer(buffer: IntBuffer): Chunk[Int]

    Returns a chunk backed by a java.nio.IntBuffer.

  25. def fromIterable[A](it: Iterable[A]): Chunk[A]

    Returns a chunk backed by an iterable.

  26. def fromLongBuffer(buffer: LongBuffer): Chunk[Long]

    Returns a chunk backed by a java.nio.LongBuffer.

  27. def fromShortBuffer(buffer: ShortBuffer): Chunk[Short]

    Returns a chunk backed by a java.nio.ShortBuffer.

  28. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  29. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. def iterate[A](start: A, len: Int)(f: (A) ⇒ A): Chunk[A]
    Definition Classes
    GenTraversableFactory
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. def newBuilder[A]: ChunkBuilder[A]
    Definition Classes
    ChunkFactory → GenericCompanion
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. def range[T](start: T, end: T, step: T)(implicit arg0: Integral[T]): Chunk[T]
    Definition Classes
    GenTraversableFactory
  37. def range[T](start: T, end: T)(implicit arg0: Integral[T]): Chunk[T]
    Definition Classes
    GenTraversableFactory
  38. def single[A](a: A): Chunk[A]

    Returns a singleton chunk, eagerly evaluated.

  39. def succeed[A](a: A): Chunk[A]

    Alias for Chunk.single.

  40. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  41. def tabulate[A](n1: Int, n2: Int, n3: Int, n4: Int, n5: Int)(f: (Int, Int, Int, Int, Int) ⇒ A): Chunk[Chunk[Chunk[Chunk[Chunk[A]]]]]
    Definition Classes
    GenTraversableFactory
  42. def tabulate[A](n1: Int, n2: Int, n3: Int, n4: Int)(f: (Int, Int, Int, Int) ⇒ A): Chunk[Chunk[Chunk[Chunk[A]]]]
    Definition Classes
    GenTraversableFactory
  43. def tabulate[A](n1: Int, n2: Int, n3: Int)(f: (Int, Int, Int) ⇒ A): Chunk[Chunk[Chunk[A]]]
    Definition Classes
    GenTraversableFactory
  44. def tabulate[A](n1: Int, n2: Int)(f: (Int, Int) ⇒ A): Chunk[Chunk[A]]
    Definition Classes
    GenTraversableFactory
  45. def tabulate[A](n: Int)(f: (Int) ⇒ A): Chunk[A]
    Definition Classes
    GenTraversableFactory
  46. def toString(): String
    Definition Classes
    AnyRef → Any
  47. def unapplySeq[A](x: Chunk[A]): Some[Chunk[A]]
    Definition Classes
    SeqFactory
  48. val unit: Chunk[Unit]

    The unit chunk

  49. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from ChunkPlatformSpecific

Inherited from ChunkFactory

Inherited from IndexedSeqFactory[Chunk]

Inherited from SeqFactory[Chunk]

Inherited from TraversableFactory[Chunk]

Inherited from GenericSeqCompanion[Chunk]

Inherited from GenSeqFactory[Chunk]

Inherited from GenTraversableFactory[Chunk]

Inherited from GenericCompanion[Chunk]

Inherited from AnyRef

Inherited from Any

Ungrouped