Packages

object Chunk extends ChunkFactory with ChunkPlatformSpecific

Linear Supertypes
ChunkPlatformSpecific, ChunkFactory, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Chunk
  2. ChunkPlatformSpecific
  3. ChunkFactory
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. final case class DoubleArray(array: Array[Double]) extends Arr[Double] with Product with Serializable
  6. final case class FloatArray(array: Array[Float]) extends Arr[Float] with Product with Serializable
  7. final case class IntArray(array: Array[Int]) extends Arr[Int] with Product with Serializable
  8. final case class LongArray(array: Array[Long]) extends Arr[Long] with Product with Serializable
  9. 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 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 → ChunkFactory
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. val empty: Chunk[Nothing]

    Returns the empty chunk.

  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def fill[A](n: Int)(elem: => A): Chunk[A]
    Definition Classes
    Chunk → ChunkFactory
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. 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.

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

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

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

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

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

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

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

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

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

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

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

    Returns a chunk backed by an iterable.

  19. def fromIterator[A](iterator: Iterator[A]): Chunk[A]

    Creates a chunk from an iterator.

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

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

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

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

  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def single[A](a: A): Chunk[A]

    Returns a singleton chunk, eagerly evaluated.

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

    Alias for Chunk.single.

  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. def unapplySeq[A](chunk: Chunk[A]): Some[Chunk[A]]

    Extracts the elements from a Chunk.

    Extracts the elements from a Chunk.

    Definition Classes
    ChunkFactory
  33. def unfold[S, A](s: S)(f: (S) => Option[(A, S)]): Chunk[A]

    Constructs a Chunk by repeatedly applying the function f as long as it returns Some.

  34. def unfoldM[R, E, A, S](s: S)(f: (S) => ZIO[R, E, Option[(A, S)]]): ZIO[R, E, Chunk[A]]

    Constructs a Chunk by repeatedly applying the effectual function f as long as it returns Some.

  35. val unit: Chunk[Unit]

    The unit chunk

  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from ChunkPlatformSpecific

Inherited from ChunkFactory

Inherited from AnyRef

Inherited from Any

Ungrouped