Class

fs2.Chunk

StrictOps

Related Doc: package Chunk

Permalink

final class StrictOps[+O] extends AnyVal

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

Source
Chunk.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StrictOps
  2. AnyVal
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StrictOps(self: Chunk[O])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from StrictOps[O] to any2stringadd[StrictOps[O]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (StrictOps[O], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from StrictOps[O] to ArrowAssoc[StrictOps[O]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def drop(n: Int): Chunk[O]

    Permalink

    Drops the first n elements of this chunk.

  8. def ensuring(cond: (StrictOps[O]) ⇒ Boolean, msg: ⇒ Any): StrictOps[O]

    Permalink
    Implicit information
    This member is added by an implicit conversion from StrictOps[O] to Ensuring[StrictOps[O]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (StrictOps[O]) ⇒ Boolean): StrictOps[O]

    Permalink
    Implicit information
    This member is added by an implicit conversion from StrictOps[O] to Ensuring[StrictOps[O]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): StrictOps[O]

    Permalink
    Implicit information
    This member is added by an implicit conversion from StrictOps[O] to Ensuring[StrictOps[O]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): StrictOps[O]

    Permalink
    Implicit information
    This member is added by an implicit conversion from StrictOps[O] to Ensuring[StrictOps[O]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from StrictOps[O] to StringFormat[StrictOps[O]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  13. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  14. def head: O

    Permalink

    Gets the first element of this chunk or throws if the chunk is empty.

  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. def last: O

    Permalink

    Gets the last element of this chunk or throws if the chunk is empty.

  17. def map[O2](f: (O) ⇒ O2): Chunk[O2]

    Permalink

    Strict version of map.

  18. def splitAt(n: Int): (Chunk[O], Chunk[O])

    Permalink

    Splits this chunk in to two chunks at the specified index.

  19. def take(n: Int): Chunk[O]

    Permalink

    Takes the first n elements of this chunk.

  20. def toString(): String

    Permalink
    Definition Classes
    Any
  21. def [B](y: B): (StrictOps[O], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from StrictOps[O] to ArrowAssoc[StrictOps[O]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion any2stringadd from StrictOps[O] to any2stringadd[StrictOps[O]]

Inherited by implicit conversion StringFormat from StrictOps[O] to StringFormat[StrictOps[O]]

Inherited by implicit conversion Ensuring from StrictOps[O] to Ensuring[StrictOps[O]]

Inherited by implicit conversion ArrowAssoc from StrictOps[O] to ArrowAssoc[StrictOps[O]]

Ungrouped