Object/Class

fs2

Chunk

Related Docs: class Chunk | package fs2

Permalink

object Chunk extends Serializable

Source
Chunk.scala
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Chunk
  2. Serializable
  3. Serializable
  4. AnyRef
  5. 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 ByteBuffer extends Chunk[Byte] with Product with Serializable

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

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

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

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

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

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

    Permalink

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 ByteBuffer extends Serializable

    Permalink
  7. object Bytes extends Serializable

    Permalink
  8. object Doubles extends Serializable

    Permalink
  9. object Floats extends Serializable

    Permalink
  10. object Ints extends Serializable

    Permalink
  11. object Longs extends Serializable

    Permalink
  12. object Shorts extends Serializable

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

    Permalink

    Creates a chunk with the specified values.

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

    Permalink

    Creates a chunk backed by an array.

  15. final def asInstanceOf[T0]: T0

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

    Permalink

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

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

    Permalink

    Creates a chunk backed by an array of booleans.

  18. 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.

  19. 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.

  20. def byteBuffer(buf: java.nio.ByteBuffer): Chunk[Byte]

    Permalink

    Creates a chunk backed by an byte buffer, bounded by the current position and limit

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

    Permalink

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

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

    Permalink

    Creates a chunk backed by an array of bytes.

  23. def clone(): AnyRef

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

    Permalink

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

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

    Permalink

    Creates a chunk backed by an array of doubles.

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

    Permalink

    Chunk with no elements.

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

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

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

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

    Permalink

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

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

    Permalink

    Creates a chunk backed by an array of floats.

  32. implicit def fs2EqForChunk[A](implicit arg0: Eq[A]): Eq[Chunk[A]]

    Permalink
  33. final def getClass(): Class[_]

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

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

    Permalink

    Creates a chunk backed by an IndexedSeq.

  36. implicit val instance: Traverse[Chunk] with Monad[Chunk]

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

    Permalink

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

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

    Permalink

    Creates a chunk backed by an array of ints.

  39. final def isInstanceOf[T0]: Boolean

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

    Permalink

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

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

    Permalink

    Creates a chunk backed by an array of longs.

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

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

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

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

    Permalink

    Creates a chunk backed by a Seq.

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

    Permalink

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

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

    Permalink

    Creates a chunk backed by an array of shorts.

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

    Permalink

    Creates a chunk consisting of a single element.

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

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

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

    Permalink

    Creates a chunk backed by a vector.

  52. final def wait(): Unit

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

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

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

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped