Object/Class

fs2

Chunk

Related Docs: class 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 case class Booleans(values: Array[Boolean], offset: Int, length: Int) extends Chunk[Boolean] with Product with Serializable

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

    Permalink
  3. final case class Bytes(values: Array[Byte], offset: Int, length: Int) extends Chunk[Byte] with Product with Serializable

    Permalink
  4. final case class Doubles(values: Array[Double], offset: Int, length: Int) extends Chunk[Double] with Product with Serializable

    Permalink
  5. final case class Floats(values: Array[Float], offset: Int, length: Int) extends Chunk[Float] with Product with Serializable

    Permalink
  6. final case class Ints(values: Array[Int], offset: Int, length: Int) extends Chunk[Int] with Product with Serializable

    Permalink
  7. final case class Longs(values: Array[Long], offset: Int, length: Int) extends Chunk[Long] with Product with Serializable

    Permalink
  8. final case class Shorts(values: Array[Short], offset: Int, length: Int) extends Chunk[Short] with Product with Serializable

    Permalink
  9. final class StrictOps[+O] extends AnyVal

    Permalink

    Defines operations on a Chunk that return a Chunk and that might otherwise conflict with lazy implementations defined on Segment.

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. object Booleans extends Serializable

    Permalink
  5. object Boxed extends Serializable

    Permalink
  6. object Bytes extends Serializable

    Permalink
  7. object Doubles extends Serializable

    Permalink
  8. object Floats extends Serializable

    Permalink
  9. object Ints extends Serializable

    Permalink
  10. object Longs extends Serializable

    Permalink
  11. object Shorts extends Serializable

    Permalink
  12. def apply[O](os: O*): Chunk[O]

    Permalink

    Creates a chunk with the specified values.

  13. def array[O](values: Array[O]): Chunk[O]

    Permalink

    Creates a chunk backed by an array.

  14. final def asInstanceOf[T0]: T0

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

    Permalink

    Creates a chunk backed by a subsequence of an array of booleans.

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

    Permalink

    Creates a chunk backed by an array of booleans.

  17. def boxed[O](values: Array[O], offset: Int, length: Int): Chunk[O]

    Permalink

    Creates a chunk backed by a subsequence of an array.

    Creates a chunk backed by a subsequence of an array. If A is a primitive type, elements will be boxed.

  18. def boxed[O](values: Array[O]): Chunk[O]

    Permalink

    Creates a chunk backed by an array.

    Creates a chunk backed by an array. If O is a primitive type, elements will be boxed.

  19. def bytes(values: Array[Byte], offset: Int, length: Int): Chunk[Byte]

    Permalink

    Creates a chunk backed by a subsequence of an array of bytes.

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

    Permalink

    Creates a chunk backed by an array of bytes.

  21. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. def doubles(values: Array[Double], offset: Int, length: Int): Chunk[Double]

    Permalink

    Creates a chunk backed by a subsequence of an array of doubles.

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

    Permalink

    Creates a chunk backed by an array of doubles.

  24. def empty[A]: Chunk[A]

    Permalink

    Chunk with no elements.

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  28. def floats(values: Array[Float], offset: Int, length: Int): Chunk[Float]

    Permalink

    Creates a chunk backed by a subsequence of an array of floats.

  29. def floats(values: Array[Float]): Chunk[Float]

    Permalink

    Creates a chunk backed by an array of floats.

  30. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  32. def indexedSeq[O](s: IndexedSeq[O]): Chunk[O]

    Permalink

    Creates a chunk backed by an IndexedSeq.

  33. def ints(values: Array[Int], offset: Int, length: Int): Chunk[Int]

    Permalink

    Creates a chunk backed by a subsequence of an array of ints.

  34. def ints(values: Array[Int]): Chunk[Int]

    Permalink

    Creates a chunk backed by an array of ints.

  35. final def isInstanceOf[T0]: Boolean

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

    Permalink

    Creates a chunk backed by a subsequence of an array of ints.

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

    Permalink

    Creates a chunk backed by an array of longs.

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

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

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

    Permalink
    Definition Classes
    AnyRef
  41. def seq[O](s: Seq[O]): Chunk[O]

    Permalink

    Creates a chunk backed by a Seq.

  42. def shorts(values: Array[Short], offset: Int, length: Int): Chunk[Short]

    Permalink

    Creates a chunk backed by a subsequence of an array of shorts.

  43. def shorts(values: Array[Short]): Chunk[Short]

    Permalink

    Creates a chunk backed by an array of shorts.

  44. def singleton[O](o: O): Chunk[O]

    Permalink

    Creates a chunk consisting of a single element.

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  47. def vector[O](v: Vector[O]): Chunk[O]

    Permalink

    Creates a chunk backed by a vector.

  48. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped