Packages

c

zio.Chunk

CharArray

final case class CharArray(array: Array[Char]) extends Arr[Char] with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CharArray
  2. Product
  3. Arr
  4. Serializable
  5. Serializable
  6. Chunk
  7. ChunkLike
  8. IndexedSeq
  9. IndexedSeq
  10. IndexedSeqLike
  11. Seq
  12. Seq
  13. SeqLike
  14. GenSeq
  15. GenSeqLike
  16. PartialFunction
  17. Function1
  18. Iterable
  19. Iterable
  20. IterableLike
  21. Equals
  22. GenIterable
  23. GenIterableLike
  24. Traversable
  25. Immutable
  26. Traversable
  27. GenTraversable
  28. GenericTraversableTemplate
  29. TraversableLike
  30. GenTraversableLike
  31. Parallelizable
  32. TraversableOnce
  33. GenTraversableOnce
  34. FilterMonadic
  35. HasNewBuilder
  36. AnyRef
  37. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CharArray(array: Array[Char])

Type Members

  1. class Elements extends AbstractIterator[A] with BufferedIterator[A] with Serializable
    Attributes
    protected
    Definition Classes
    IndexedSeqLike
    Annotations
    @SerialVersionUID()
  2. type Self = Chunk[Char]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  3. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ++[A1 >: Char](that: NonEmptyChunk[A1]): NonEmptyChunk[A1]
    Definition Classes
    Chunk
  4. final def ++[A1 >: Char](that: Chunk[A1]): Chunk[A1]

    Returns the concatenation of this chunk with the specified chunk.

    Returns the concatenation of this chunk with the specified chunk.

    Definition Classes
    Chunk
  5. def ++[B >: Char, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[Char], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  6. def ++:[B >: Char, That](that: Traversable[B])(implicit bf: CanBuildFrom[Chunk[Char], B, That]): That
    Definition Classes
    TraversableLike
  7. def ++:[B >: Char, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[Char], B, That]): That
    Definition Classes
    TraversableLike
  8. final def +:[A1 >: Char, That](a1: A1)(implicit bf: CanBuildFrom[Chunk[Char], A1, That]): That
    Definition Classes
    ChunkLike → SeqLike → GenSeqLike
  9. final def :+[A1 >: Char, That](a1: A1)(implicit bf: CanBuildFrom[Chunk[Char], A1, That]): That
    Definition Classes
    ChunkLike → SeqLike → GenSeqLike
  10. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  12. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  13. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  14. def aggregate[B](z: ⇒ B)(seqop: (B, Char) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  15. def andThen[C](k: (Char) ⇒ C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  16. def append[A1 >: Char](a1: A1): Chunk[A1]

    Appends an element to the chunk.

    Appends an element to the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  17. def apply(n: Int): Char
    Definition Classes
    Arr → SeqLike → GenSeqLike → Function1
  18. def applyOrElse[A1 <: Int, B1 >: Char](x: A1, default: (A1) ⇒ B1): B1
    Definition Classes
    PartialFunction
  19. val array: Array[Char]
    Definition Classes
    CharArray → Arr
  20. final def asBits(implicit ev: <:<[Char, Byte]): Chunk[Boolean]

    Converts a chunk of bytes to a chunk of bits.

    Converts a chunk of bytes to a chunk of bits.

    Definition Classes
    Chunk
  21. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  22. def boolean(index: Int)(implicit ev: <:<[Char, Boolean]): Boolean

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  23. def byte(index: Int)(implicit ev: <:<[Char, Byte]): Byte

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  24. def canEqual(that: Any): Boolean
    Definition Classes
    IterableLike → Equals
  25. def char(index: Int)(implicit ev: <:<[Char, Char]): Char

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    CharArrayChunk
  26. implicit val classTag: ClassTag[Char]
    Definition Classes
    Arr
  27. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  28. final def collect[B, That](pf: PartialFunction[Char, B])(implicit bf: CanBuildFrom[Chunk[Char], B, That]): That

    Returns a filtered, mapped subset of the elements of this chunk.

    Returns a filtered, mapped subset of the elements of this chunk.

    Definition Classes
    ChunkLike → TraversableLike → GenTraversableLike
  29. def collectChunk[B](pf: PartialFunction[Char, B]): Chunk[B]

    Returns a filtered, mapped subset of the elements of this chunk.

    Returns a filtered, mapped subset of the elements of this chunk.

    Attributes
    protected
    Definition Classes
    Arr → Chunk
  30. def collectFirst[B](pf: PartialFunction[Char, B]): Option[B]
    Definition Classes
    TraversableOnce
  31. def collectWhile[B](pf: PartialFunction[Char, B]): Chunk[B]

    Transforms all elements of the chunk for as long as the specified partial function is defined.

    Transforms all elements of the chunk for as long as the specified partial function is defined.

    Definition Classes
    Arr → Chunk
  32. def collectWhileZIO[R, E, B](pf: PartialFunction[Char, ZIO[R, E, B]]): ZIO[R, E, Chunk[B]]
    Definition Classes
    Arr → Chunk
  33. def collectZIO[R, E, B](pf: PartialFunction[Char, ZIO[R, E, B]]): ZIO[R, E, Chunk[B]]

    Returns a filtered, mapped subset of the elements of this chunk based on a .

    Returns a filtered, mapped subset of the elements of this chunk based on a .

    Definition Classes
    Arr → Chunk
  34. def combinations(n: Int): Iterator[Chunk[Char]]
    Definition Classes
    SeqLike
  35. def companion: GenericCompanion[Chunk]
    Definition Classes
    ChunkLike → IndexedSeq → IndexedSeq → Seq → Seq → GenSeq → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  36. def compose[A](g: (A) ⇒ Int): (A) ⇒ Char
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  37. def contains[A1 >: Char](elem: A1): Boolean
    Definition Classes
    SeqLike
  38. def containsSlice[B](that: GenSeq[B]): Boolean
    Definition Classes
    SeqLike
  39. def copyToArray[B >: Char](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  40. def copyToArray[B >: Char](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  41. def copyToArray[B >: Char](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  42. def copyToBuffer[B >: Char](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  43. final def corresponds[B](that: Chunk[B])(f: (Char, B) ⇒ Boolean): Boolean

    Determines whether this chunk and the specified chunk have the same length and every pair of corresponding elements of this chunk and the specified chunk satisfy the specified predicate.

    Determines whether this chunk and the specified chunk have the same length and every pair of corresponding elements of this chunk and the specified chunk satisfy the specified predicate.

    Definition Classes
    Chunk
  44. def corresponds[B](that: GenSeq[B])(p: (Char, B) ⇒ Boolean): Boolean
    Definition Classes
    SeqLike → GenSeqLike
  45. def count(p: (Char) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def depth: Int
    Attributes
    protected
    Definition Classes
    Chunk
  47. def diff[B >: Char](that: GenSeq[B]): Chunk[Char]
    Definition Classes
    SeqLike → GenSeqLike
  48. def distinct: Chunk[Char]
    Definition Classes
    SeqLike → GenSeqLike
  49. def double(index: Int)(implicit ev: <:<[Char, Double]): Double

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  50. def drop(n: Int): Chunk[Char]

    Drops the first n elements of the chunk.

    Drops the first n elements of the chunk.

    Definition Classes
    Chunk → IterableLike → TraversableLike → GenTraversableLike
  51. def dropRight(n: Int): Chunk[Char]
    Definition Classes
    IterableLike
  52. def dropWhile(f: (Char) ⇒ Boolean): Chunk[Char]

    Drops all elements so long as the predicate returns true.

    Drops all elements so long as the predicate returns true.

    Definition Classes
    Arr → Chunk → TraversableLike → GenTraversableLike
  53. def dropWhileZIO[R, E](p: (Char) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Char]]
    Definition Classes
    Chunk
  54. def endsWith[B](that: GenSeq[B]): Boolean
    Definition Classes
    SeqLike → GenSeqLike
  55. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  56. final def equals(that: Any): Boolean
    Definition Classes
    Chunk → GenSeqLike → Equals → AnyRef → Any
  57. final def exists(f: (Char) ⇒ Boolean): Boolean

    Determines whether a predicate is satisfied for at least one element of this chunk.

    Determines whether a predicate is satisfied for at least one element of this chunk.

    Definition Classes
    Chunk → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  58. def filter(f: (Char) ⇒ Boolean): Chunk[Char]

    Returns a filtered subset of this chunk.

    Returns a filtered subset of this chunk.

    Definition Classes
    Arr → Chunk → TraversableLike → GenTraversableLike
  59. def filterNot(p: (Char) ⇒ Boolean): Chunk[Char]
    Definition Classes
    TraversableLike → GenTraversableLike
  60. final def filterZIO[R, E](f: (Char) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Char]]

    Filters this chunk by the specified effectful predicate, retaining all elements for which the predicate evaluates to true.

    Filters this chunk by the specified effectful predicate, retaining all elements for which the predicate evaluates to true.

    Definition Classes
    Chunk
  61. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  62. final def find(f: (Char) ⇒ Boolean): Option[Char]

    Returns the first element that satisfies the predicate.

    Returns the first element that satisfies the predicate.

    Definition Classes
    Chunk → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  63. final def findZIO[R, E](f: (Char) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Option[Char]]

    Returns the first element that satisfies the effectful predicate.

    Returns the first element that satisfies the effectful predicate.

    Definition Classes
    Chunk
  64. final def flatMap[B, That](f: (Char) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Chunk[Char], B, That]): That

    Returns the concatenation of mapping every element into a new chunk using the specified function.

    Returns the concatenation of mapping every element into a new chunk using the specified function.

    Definition Classes
    ChunkLike → TraversableLike → GenTraversableLike → FilterMonadic
  65. final def flatMapChunk[B, That](f: (Char) ⇒ GenTraversableOnce[B]): Chunk[B]

    The implementation of flatMap for Chunk.

    The implementation of flatMap for Chunk.

    Attributes
    protected
    Definition Classes
    ChunkLike
  66. final def flatten[B](implicit ev: <:<[Char, Chunk[B]]): Chunk[B]

    Flattens a chunk of chunks into a single chunk by concatenating all chunks.

    Flattens a chunk of chunks into a single chunk by concatenating all chunks.

    Definition Classes
    Chunk
  67. def flatten[B](implicit asTraversable: (Char) ⇒ GenTraversableOnce[B]): Chunk[B]
    Definition Classes
    GenericTraversableTemplate
  68. def float(index: Int)(implicit ev: <:<[Char, Float]): Float

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  69. def fold[A1 >: Char](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  70. def foldLeft[S](s0: S)(f: (S, Char) ⇒ S): S

    Folds over the elements in this chunk from the left.

    Folds over the elements in this chunk from the left.

    Definition Classes
    Arr → Chunk → TraversableOnce → GenTraversableOnce
  71. def foldRight[S](s0: S)(f: (Char, S) ⇒ S): S

    Folds over the elements in this chunk from the right.

    Folds over the elements in this chunk from the right.

    Definition Classes
    Arr → Chunk → IterableLike → TraversableOnce → GenTraversableOnce
  72. final def foldWhile[S](s0: S)(pred: (S) ⇒ Boolean)(f: (S, Char) ⇒ S): S

    Folds over the elements in this chunk from the left.

    Folds over the elements in this chunk from the left. Stops the fold early when the condition is not fulfilled.

    Definition Classes
    Chunk
  73. final def foldWhileZIO[R, E, S](z: S)(pred: (S) ⇒ Boolean)(f: (S, Char) ⇒ ZIO[R, E, S]): ZIO[R, E, S]
    Definition Classes
    Chunk
  74. final def foldZIO[R, E, S](s: S)(f: (S, Char) ⇒ ZIO[R, E, S]): ZIO[R, E, S]

    Effectfully folds over the elements in this chunk from the left.

    Effectfully folds over the elements in this chunk from the left.

    Definition Classes
    Chunk
  75. final def forall(f: (Char) ⇒ Boolean): Boolean

    Determines whether a predicate is satisfied for all elements of this chunk.

    Determines whether a predicate is satisfied for all elements of this chunk.

    Definition Classes
    Chunk → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  76. def foreach[B](f: (Char) ⇒ B): Unit
    Definition Classes
    Arr → IterableLike → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  77. def genericBuilder[B]: Builder[B, Chunk[B]]
    Definition Classes
    GenericTraversableTemplate
  78. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  79. def groupBy[K](f: (Char) ⇒ K): Map[K, Chunk[Char]]
    Definition Classes
    TraversableLike → GenTraversableLike
  80. def grouped(size: Int): Iterator[Chunk[Char]]
    Definition Classes
    IterableLike
  81. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  82. final def hashCode(): Int
    Definition Classes
    Chunk → IndexedSeqLike → GenSeqLike → AnyRef → Any
  83. def head: Char

    Returns the first element of this chunk.

    Returns the first element of this chunk. Note that this method is partial in that it will throw an exception if the chunk is empty. Consider using headOption to explicitly handle the possibility that the chunk is empty or iterating over the elements of the chunk in lower level, performance sensitive code unless you really only need the first element of the chunk.

    Definition Classes
    Chunk → IterableLike → GenericTraversableTemplate → TraversableLike → GenTraversableLike
  84. final def headOption: Option[Char]

    Returns the first element of this chunk if it exists.

    Returns the first element of this chunk if it exists.

    Definition Classes
    Chunk → TraversableLike → GenTraversableLike
  85. def indexOf[B >: Char](elem: B, from: Int): Int
    Definition Classes
    GenSeqLike
  86. def indexOf[B >: Char](elem: B): Int
    Definition Classes
    GenSeqLike
  87. def indexOfSlice[B >: Char](that: GenSeq[B], from: Int): Int
    Definition Classes
    SeqLike
  88. def indexOfSlice[B >: Char](that: GenSeq[B]): Int
    Definition Classes
    SeqLike
  89. final def indexWhere(f: (Char) ⇒ Boolean, from: Int): Int

    Returns the first index for which the given predicate is satisfied after or at some given index.

    Returns the first index for which the given predicate is satisfied after or at some given index.

    Definition Classes
    Chunk → SeqLike → GenSeqLike
  90. final def indexWhere(f: (Char) ⇒ Boolean): Int

    Returns the first index for which the given predicate is satisfied.

    Returns the first index for which the given predicate is satisfied.

    Definition Classes
    ChunkLike → GenSeqLike
  91. def indices: Range
    Definition Classes
    SeqLike
  92. def init: Chunk[Char]
    Definition Classes
    TraversableLike → GenTraversableLike
  93. def inits: Iterator[Chunk[Char]]
    Definition Classes
    TraversableLike
  94. def int(index: Int)(implicit ev: <:<[Char, Int]): Int

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  95. def intersect[B >: Char](that: GenSeq[B]): Chunk[Char]
    Definition Classes
    SeqLike → GenSeqLike
  96. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    GenSeqLike
  97. final def isEmpty: Boolean

    Determines if the chunk is empty.

    Determines if the chunk is empty.

    Definition Classes
    Chunk → SeqLike → IterableLike → GenericTraversableTemplate → TraversableLike → TraversableOnce → GenTraversableOnce
  98. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  99. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  100. def iterator: Iterator[Char]
    Definition Classes
    IndexedSeqLike → IterableLike → GenIterableLike
  101. def last: Char
    Definition Classes
    TraversableLike → GenTraversableLike
  102. def lastIndexOf[B >: Char](elem: B, end: Int): Int
    Definition Classes
    GenSeqLike
  103. def lastIndexOf[B >: Char](elem: B): Int
    Definition Classes
    GenSeqLike
  104. def lastIndexOfSlice[B >: Char](that: GenSeq[B], end: Int): Int
    Definition Classes
    SeqLike
  105. def lastIndexOfSlice[B >: Char](that: GenSeq[B]): Int
    Definition Classes
    SeqLike
  106. def lastIndexWhere(p: (Char) ⇒ Boolean, end: Int): Int
    Definition Classes
    SeqLike → GenSeqLike
  107. def lastIndexWhere(p: (Char) ⇒ Boolean): Int
    Definition Classes
    GenSeqLike
  108. final def lastOption: Option[Char]

    Returns the last element of this chunk if it exists.

    Returns the last element of this chunk if it exists.

    Definition Classes
    Chunk → TraversableLike → GenTraversableLike
  109. def left: Chunk[Char]
    Attributes
    protected
    Definition Classes
    Chunk
  110. val length: Int
    Definition Classes
    Arr → SeqLike → GenSeqLike
  111. def lengthCompare(len: Int): Int
    Definition Classes
    SeqLike
  112. def lift: (Int) ⇒ Option[Char]
    Definition Classes
    PartialFunction
  113. def long(index: Int)(implicit ev: <:<[Char, Long]): Long

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  114. final def map[B, That](f: (Char) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Char], B, That]): That

    Returns a chunk with the elements mapped by the specified function.

    Returns a chunk with the elements mapped by the specified function.

    Definition Classes
    ChunkLike → TraversableLike → GenTraversableLike → FilterMonadic
  115. final def mapAccum[S1, B](s1: S1)(f1: (S1, Char) ⇒ (S1, B)): (S1, Chunk[B])

    Statefully maps over the chunk, producing new elements of type B.

    Statefully maps over the chunk, producing new elements of type B.

    Definition Classes
    Chunk
  116. final def mapAccumZIO[R, E, S1, B](s1: S1)(f1: (S1, Char) ⇒ ZIO[R, E, (S1, B)]): ZIO[R, E, (S1, Chunk[B])]

    Statefully and effectfully maps over the elements of this chunk to produce new elements.

    Statefully and effectfully maps over the elements of this chunk to produce new elements.

    Definition Classes
    Chunk
  117. def mapChunk[B](f: (Char) ⇒ B): Chunk[B]

    Returns a chunk with the elements mapped by the specified function.

    Returns a chunk with the elements mapped by the specified function.

    Attributes
    protected
    Definition Classes
    Arr → Chunk
  118. final def mapZIO[R, E, B](f: (Char) ⇒ ZIO[R, E, B]): ZIO[R, E, Chunk[B]]

    Effectfully maps the elements of this chunk.

    Effectfully maps the elements of this chunk.

    Definition Classes
    Chunk
  119. final def mapZIODiscard[R, E](f: (Char) ⇒ ZIO[R, E, Any]): ZIO[R, E, Unit]

    Effectfully maps the elements of this chunk purely for the effects.

    Effectfully maps the elements of this chunk purely for the effects.

    Definition Classes
    Chunk
  120. final def mapZIOPar[R, E, B](f: (Char) ⇒ ZIO[R, E, B]): ZIO[R, E, Chunk[B]]

    Effectfully maps the elements of this chunk in parallel.

    Effectfully maps the elements of this chunk in parallel.

    Definition Classes
    Chunk
  121. final def mapZIOParDiscard[R, E](f: (Char) ⇒ ZIO[R, E, Any]): ZIO[R, E, Unit]

    Effectfully maps the elements of this chunk in parallel purely for the effects.

    Effectfully maps the elements of this chunk in parallel purely for the effects.

    Definition Classes
    Chunk
  122. def materialize[A1 >: Char]: Chunk[A1]

    Materializes a chunk into a chunk backed by an array.

    Materializes a chunk into a chunk backed by an array. This method can improve the performance of bulk operations.

    Definition Classes
    Arr → Chunk
  123. def max[B >: Char](implicit cmp: Ordering[B]): Char
    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def maxBy[B](f: (Char) ⇒ B)(implicit cmp: Ordering[B]): Char
    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def min[B >: Char](implicit cmp: Ordering[B]): Char
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def minBy[B](f: (Char) ⇒ B)(implicit cmp: Ordering[B]): Char
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. final def mkString: String

    Generates a readable string representation of this chunk.

    Generates a readable string representation of this chunk.

    Definition Classes
    ChunkLike → TraversableOnce → GenTraversableOnce
  128. final def mkString(sep: String): String

    Generates a readable string representation of this chunk using the specified separator string.

    Generates a readable string representation of this chunk using the specified separator string.

    Definition Classes
    ChunkLike → TraversableOnce → GenTraversableOnce
  129. final def mkString(start: String, sep: String, end: String): String

    Generates a readable string representation of this chunk using the specified start, separator, and end strings.

    Generates a readable string representation of this chunk using the specified start, separator, and end strings.

    Definition Classes
    ChunkLike → TraversableOnce → GenTraversableOnce
  130. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  131. def newBuilder: ChunkBuilder[Char]

    Constructs a new ChunkBuilder.

    Constructs a new ChunkBuilder. This operation allocates mutable state and is not referentially transparent. It is provided for compatibility with Scala's collection library and should not be used for other purposes.

    Attributes
    protected[this]
    Definition Classes
    ChunkLike → GenericTraversableTemplate → TraversableLike → HasNewBuilder
  132. final def nonEmpty: Boolean

    Determines if the chunk is not empty.

    Determines if the chunk is not empty.

    Definition Classes
    ChunkLike → TraversableOnce → GenTraversableOnce
  133. def nonEmptyOrElse[B](ifEmpty: ⇒ B)(fn: (NonEmptyChunk[Char]) ⇒ B): B

    Runs fn if a chunk is not empty or returns default value

    Runs fn if a chunk is not empty or returns default value

    Definition Classes
    Chunk
  134. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  135. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  136. def orElse[A1 <: Int, B1 >: Char](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  137. def padTo[B >: Char, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Chunk[Char], B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  138. def par: ParSeq[Char]
    Definition Classes
    Parallelizable
  139. def parCombiner: Combiner[Char, ParSeq[Char]]
    Attributes
    protected[this]
    Definition Classes
    Seq → SeqLike → Iterable → TraversableLike → Parallelizable
  140. def partition(p: (Char) ⇒ Boolean): (Chunk[Char], Chunk[Char])
    Definition Classes
    TraversableLike → GenTraversableLike
  141. final def partitionMap[B, C](f: (Char) ⇒ Either[B, C]): (Chunk[B], Chunk[C])

    Partitions the elements of this chunk into two chunks using the specified function.

    Partitions the elements of this chunk into two chunks using the specified function.

    Definition Classes
    Chunk → ChunkLike
  142. def patch[B >: Char, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Chunk[Char], B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  143. def permutations: Iterator[Chunk[Char]]
    Definition Classes
    SeqLike
  144. def prefixLength(p: (Char) ⇒ Boolean): Int
    Definition Classes
    GenSeqLike
  145. def prepend[A1 >: Char](a1: A1): Chunk[A1]

    Prepends an element to the chunk.

    Prepends an element to the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  146. def product[B >: Char](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  147. def reduce[A1 >: Char](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  148. def reduceLeft[B >: Char](op: (B, Char) ⇒ B): B
    Definition Classes
    TraversableOnce
  149. def reduceLeftOption[B >: Char](op: (B, Char) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  150. def reduceOption[A1 >: Char](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  151. def reduceRight[B >: Char](op: (Char, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  152. def reduceRightOption[B >: Char](op: (Char, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  153. def repr: Chunk[Char]
    Definition Classes
    TraversableLike → GenTraversableLike
  154. def reverse: Chunk[Char]
    Definition Classes
    SeqLike → GenSeqLike
  155. def reverseIterator: Iterator[Char]
    Definition Classes
    SeqLike
  156. def reverseMap[B, That](f: (Char) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Char], B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  157. def reversed: List[Char]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  158. def right: Chunk[Char]
    Attributes
    protected
    Definition Classes
    Chunk
  159. def runWith[U](action: (Char) ⇒ U): (Int) ⇒ Boolean
    Definition Classes
    PartialFunction
  160. def sameElements[B >: Char](that: GenIterable[B]): Boolean
    Definition Classes
    IterableLike → GenIterableLike
  161. def scan[B >: Char, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Chunk[Char], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  162. def scanLeft[B, That](z: B)(op: (B, Char) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Char], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  163. def scanRight[B, That](z: B)(op: (Char, B) ⇒ B)(implicit bf: CanBuildFrom[Chunk[Char], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  164. def segmentLength(p: (Char) ⇒ Boolean, from: Int): Int
    Definition Classes
    SeqLike → GenSeqLike
  165. def seq: IndexedSeq[Char]
    Definition Classes
    IndexedSeq → IndexedSeq → IndexedSeqLike → Seq → Seq → GenSeq → GenSeqLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  166. def short(index: Int)(implicit ev: <:<[Char, Short]): Short

    Get the element at the specified index.

    Get the element at the specified index.

    Definition Classes
    Chunk
  167. final def size: Int

    The number of elements in the chunk.

    The number of elements in the chunk.

    Definition Classes
    ChunkLike → SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  168. def sizeHintIfCheap: Int
    Attributes
    protected[collection]
    Definition Classes
    IndexedSeqLike → GenTraversableOnce
  169. def slice(from: Int, until: Int): Chunk[Char]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  170. def sliding(size: Int, step: Int): Iterator[Chunk[Char]]
    Definition Classes
    IterableLike
  171. def sliding(size: Int): Iterator[Chunk[Char]]
    Definition Classes
    IterableLike
  172. def sortBy[B](f: (Char) ⇒ B)(implicit ord: Ordering[B]): Chunk[Char]
    Definition Classes
    SeqLike
  173. def sortWith(lt: (Char, Char) ⇒ Boolean): Chunk[Char]
    Definition Classes
    SeqLike
  174. def sorted[B >: Char](implicit ord: Ordering[B]): Chunk[Char]
    Definition Classes
    SeqLike
  175. def span(p: (Char) ⇒ Boolean): (Chunk[Char], Chunk[Char])
    Definition Classes
    TraversableLike → GenTraversableLike
  176. final def split(n: Int): Chunk[Chunk[Char]]

    Splits this chunk into n equally sized chunks.

    Splits this chunk into n equally sized chunks.

    Definition Classes
    Chunk
  177. final def splitAt(n: Int): (Chunk[Char], Chunk[Char])

    Returns two splits of this chunk at the specified index.

    Returns two splits of this chunk at the specified index.

    Definition Classes
    Chunk → TraversableLike → GenTraversableLike
  178. final def splitWhere(f: (Char) ⇒ Boolean): (Chunk[Char], Chunk[Char])

    Splits this chunk on the first element that matches this predicate.

    Splits this chunk on the first element that matches this predicate.

    Definition Classes
    Chunk
  179. def startsWith[B](that: GenSeq[B], offset: Int): Boolean
    Definition Classes
    SeqLike → GenSeqLike
  180. def startsWith[B](that: GenSeq[B]): Boolean
    Definition Classes
    GenSeqLike
  181. def stringPrefix: String
    Definition Classes
    TraversableLike → GenTraversableLike
  182. def sum[B >: Char](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  183. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  184. def tail: Chunk[Char]
    Definition Classes
    TraversableLike → GenTraversableLike
  185. def tails: Iterator[Chunk[Char]]
    Definition Classes
    TraversableLike
  186. def take(n: Int): Chunk[Char]

    Takes the first n elements of the chunk.

    Takes the first n elements of the chunk.

    Definition Classes
    Chunk → IterableLike → TraversableLike → GenTraversableLike
  187. def takeRight(n: Int): Chunk[Char]
    Definition Classes
    IterableLike
  188. def takeWhile(f: (Char) ⇒ Boolean): Chunk[Char]

    Takes all elements so long as the predicate returns true.

    Takes all elements so long as the predicate returns true.

    Definition Classes
    Arr → Chunk → IterableLike → TraversableLike → GenTraversableLike
  189. def takeWhileZIO[R, E](p: (Char) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Char]]

    Takes all elements so long as the effectual predicate returns true.

    Takes all elements so long as the effectual predicate returns true.

    Definition Classes
    Chunk
  190. def thisCollection: IndexedSeq[Char]
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  191. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Char, Col[Char]]): Col[Char]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  192. def toArray[A1 >: Char](n: Int, dest: Array[A1]): Unit
    Attributes
    protected[zio]
    Definition Classes
    Arr → Chunk
  193. def toArray[A1 >: Char](implicit arg0: ClassTag[A1]): Array[A1]

    Converts the chunk into an array.

    Converts the chunk into an array.

    Definition Classes
    Chunk → TraversableOnce → GenTraversableOnce
  194. final def toBinaryString(implicit ev: <:<[Char, Boolean]): String

    Renders this chunk of bits as a binary string.

    Renders this chunk of bits as a binary string.

    Definition Classes
    Chunk
  195. def toBuffer[A1 >: Char]: Buffer[A1]
    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  196. def toCollection(repr: Chunk[Char]): IndexedSeq[Char]
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  197. def toIndexedSeq: IndexedSeq[Char]
    Definition Classes
    IndexedSeq → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  198. def toIterable: Iterable[Char]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  199. def toIterator: Iterator[Char]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  200. final def toList: List[Char]
    Definition Classes
    Chunk → TraversableOnce → GenTraversableOnce
  201. def toMap[T, U](implicit ev: <:<[Char, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  202. def toSeq: Seq[Char]
    Definition Classes
    Seq → SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  203. def toSet[B >: Char]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  204. def toStream: Stream[Char]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  205. final def toString(): String
    Definition Classes
    Chunk → SeqLike → Function1 → TraversableLike → AnyRef → Any
  206. def toTraversable: Traversable[Char]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  207. final def toVector: Vector[Char]
    Definition Classes
    Chunk → TraversableOnce → GenTraversableOnce
  208. def transpose[B](implicit asTraversable: (Char) ⇒ GenTraversableOnce[B]): Chunk[Chunk[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  209. def union[B >: Char, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Chunk[Char], B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  210. def unzip[A1, A2](implicit asPair: (Char) ⇒ (A1, A2)): (Chunk[A1], Chunk[A2])
    Definition Classes
    GenericTraversableTemplate
  211. def unzip3[A1, A2, A3](implicit asTriple: (Char) ⇒ (A1, A2, A3)): (Chunk[A1], Chunk[A2], Chunk[A3])
    Definition Classes
    GenericTraversableTemplate
  212. def update[A1 >: Char](index: Int, a1: A1): Chunk[A1]

    Updates an element at the specified index of the chunk.

    Updates an element at the specified index of the chunk.

    Attributes
    protected
    Definition Classes
    Chunk
  213. final def updated[B >: Char, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Chunk[Char], B, That]): That
    Definition Classes
    ChunkLike → SeqLike → GenSeqLike
  214. def view(from: Int, until: Int): SeqView[Char, Chunk[Char]]
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  215. def view: SeqView[Char, Chunk[Char]]
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  216. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  217. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  218. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  219. def withFilter(p: (Char) ⇒ Boolean): FilterMonadic[Char, Chunk[Char]]
    Definition Classes
    TraversableLike → FilterMonadic
  220. final def zip[B](that: Chunk[B])(implicit zippable: Zippable[Char, B]): Chunk[Out]

    Zips this chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk.

    Zips this chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk. The returned chunk will have the length of the shorter chunk.

    Definition Classes
    Chunk
  221. def zip[A1 >: Char, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Chunk[Char], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  222. final def zipAll[B](that: Chunk[B]): Chunk[(Option[Char], Option[B])]

    Zips this chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk, filling in missing values from the shorter chunk with None.

    Zips this chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk, filling in missing values from the shorter chunk with None. The returned chunk will have the length of the longer chunk.

    Definition Classes
    Chunk
  223. def zipAll[B, A1 >: Char, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Chunk[Char], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  224. final def zipAllWith[B, C](that: Chunk[B])(left: (Char) ⇒ C, right: (B) ⇒ C)(both: (Char, B) ⇒ C): Chunk[C]

    Zips with chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk combined using the specified function both.

    Zips with chunk with the specified chunk to produce a new chunk with pairs of elements from each chunk combined using the specified function both. If one chunk is shorter than the other uses the specified function left or right to map the element that does exist to the result type.

    Definition Classes
    Chunk
  225. final def zipWith[B, C](that: Chunk[B])(f: (Char, B) ⇒ C): Chunk[C]

    Zips this chunk with the specified chunk using the specified combiner.

    Zips this chunk with the specified chunk using the specified combiner.

    Definition Classes
    Chunk
  226. final def zipWithIndex: Chunk[(Char, Int)]

    Zips this chunk with the index of every element.

    Zips this chunk with the index of every element.

    Definition Classes
    ChunkLike
  227. def zipWithIndex[A1 >: Char, That](implicit bf: CanBuildFrom[Chunk[Char], (A1, Int), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  228. final def zipWithIndexFrom(indexOffset: Int): Chunk[(Char, Int)]

    Zips this chunk with the index of every element, starting from the initial index value.

    Zips this chunk with the index of every element, starting from the initial index value.

    Definition Classes
    Chunk

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, Char) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  2. def :\[B](z: B)(op: (Char, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

  3. def collectM[R, E, B](pf: PartialFunction[Char, ZIO[R, E, B]]): ZIO[R, E, Chunk[B]]

    Returns a filtered, mapped subset of the elements of this chunk based on a .

    Returns a filtered, mapped subset of the elements of this chunk based on a .

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectZIO

  4. def collectWhileM[R, E, B](pf: PartialFunction[Char, ZIO[R, E, B]]): ZIO[R, E, Chunk[B]]
    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectWhileZIO

  5. def dropWhileM[R, E](p: (Char) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Char]]
    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use dropWhileZIO

  6. final def filterM[R, E](f: (Char) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Char]]

    Filters this chunk by the specified effectful predicate, retaining all elements for which the predicate evaluates to true.

    Filters this chunk by the specified effectful predicate, retaining all elements for which the predicate evaluates to true.

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use filterZIO

  7. final def findM[R, E](f: (Char) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Option[Char]]

    Returns the first element that satisfies the effectful predicate.

    Returns the first element that satisfies the effectful predicate.

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use findZIO

  8. final def foldM[R, E, S](s: S)(f: (S, Char) ⇒ ZIO[R, E, S]): ZIO[R, E, S]

    Effectfully folds over the elements in this chunk from the left.

    Effectfully folds over the elements in this chunk from the left.

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use foldZIO

  9. final def foldWhileM[R, E, S](z: S)(pred: (S) ⇒ Boolean)(f: (S, Char) ⇒ ZIO[R, E, S]): ZIO[R, E, S]
    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use foldWhileZIO

  10. final def mapAccumM[R, E, S1, B](s1: S1)(f1: (S1, Char) ⇒ ZIO[R, E, (S1, B)]): ZIO[R, E, (S1, Chunk[B])]

    Statefully and effectfully maps over the elements of this chunk to produce new elements.

    Statefully and effectfully maps over the elements of this chunk to produce new elements.

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use mapAccumZIO

  11. final def mapM[R, E, B](f: (Char) ⇒ ZIO[R, E, B]): ZIO[R, E, Chunk[B]]

    Effectfully maps the elements of this chunk.

    Effectfully maps the elements of this chunk.

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use mapZIO

  12. final def mapMPar[R, E, B](f: (Char) ⇒ ZIO[R, E, B]): ZIO[R, E, Chunk[B]]

    Effectfully maps the elements of this chunk in parallel.

    Effectfully maps the elements of this chunk in parallel.

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use mapZIOPar

  13. final def mapMPar_[R, E](f: (Char) ⇒ ZIO[R, E, Any]): ZIO[R, E, Unit]

    Effectfully maps the elements of this chunk in parallel purely for the effects.

    Effectfully maps the elements of this chunk in parallel purely for the effects.

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use mapZIOParDiscard

  14. final def mapM_[R, E](f: (Char) ⇒ ZIO[R, E, Any]): ZIO[R, E, Unit]

    Effectfully maps the elements of this chunk purely for the effects.

    Effectfully maps the elements of this chunk purely for the effects.

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use mapZIODiscard

  15. def takeWhileM[R, E](p: (Char) ⇒ ZIO[R, E, Boolean]): ZIO[R, E, Chunk[Char]]

    Takes all elements so long as the effectual predicate returns true.

    Takes all elements so long as the effectual predicate returns true.

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use takeWhileZIO

Inherited from Product

Inherited from Arr[Char]

Inherited from Serializable

Inherited from Serializable

Inherited from Chunk[Char]

Inherited from ChunkLike[Char]

Inherited from IndexedSeq[Char]

Inherited from IndexedSeq[Char]

Inherited from IndexedSeqLike[Char, Chunk[Char]]

Inherited from Seq[Char]

Inherited from Seq[Char]

Inherited from SeqLike[Char, Chunk[Char]]

Inherited from GenSeq[Char]

Inherited from GenSeqLike[Char, Chunk[Char]]

Inherited from PartialFunction[Int, Char]

Inherited from (Int) ⇒ Char

Inherited from Iterable[Char]

Inherited from Iterable[Char]

Inherited from IterableLike[Char, Chunk[Char]]

Inherited from Equals

Inherited from GenIterable[Char]

Inherited from GenIterableLike[Char, Chunk[Char]]

Inherited from Traversable[Char]

Inherited from Immutable

Inherited from Traversable[Char]

Inherited from GenTraversable[Char]

Inherited from TraversableLike[Char, Chunk[Char]]

Inherited from GenTraversableLike[Char, Chunk[Char]]

Inherited from Parallelizable[Char, ParSeq[Char]]

Inherited from TraversableOnce[Char]

Inherited from GenTraversableOnce[Char]

Inherited from FilterMonadic[Char, Chunk[Char]]

Inherited from HasNewBuilder[Char, Chunk[Char]]

Inherited from AnyRef

Inherited from Any

Ungrouped