Packages

case class CharBuffer(buf: java.nio.CharBuffer, offset: Int, size: Int) extends Buffer[CharBuffer, java.nio.CharBuffer, Char] with Product with Serializable

Source
Chunk.scala
Linear Supertypes
Product, Equals, Buffer[CharBuffer, java.nio.CharBuffer, Char], Chunk[Char], ChunkRuntimePlatform[Char], ChunkPlatform[Char], Chunk213And3Compat[Char], Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CharBuffer
  2. Product
  3. Equals
  4. Buffer
  5. Chunk
  6. ChunkRuntimePlatform
  7. ChunkPlatform
  8. Chunk213And3Compat
  9. Serializable
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CharBuffer(buf: java.nio.CharBuffer, offset: Int, size: Int)

Value Members

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

    Returns a chunk which consists of the elements of this chunk and the elements of the supplied chunk.

    Returns a chunk which consists of the elements of this chunk and the elements of the supplied chunk. This operation is amortized O(1).

    Definition Classes
    Chunk
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def apply(i: Int): Char

    Returns the element at the specified index.

    Returns the element at the specified index. Throws if index is < 0 or >= size.

    Definition Classes
    BufferChunk
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def asJava: List[Char]

    Views this Chunk as a Java unmodifiable List.

    Views this Chunk as a Java unmodifiable List. Contrary to all methods that start with _"to"_ (e.g. {{toVector}}, {{toArray}}), this method does not copy data. As such, this method is mostly intended for foreach kind of interop.

    Definition Classes
    Chunk
  8. def asSeq: IndexedSeq[Char]

    Views this Chunk as a Scala immutable Seq.

    Views this Chunk as a Scala immutable Seq. Contrary to all methods that start with _"to"_ (e.g. {{toVector}}, {{toArray}}), this method does not copy data. As such, this method is mostly intended for foreach kind of interop.

    Definition Classes
    Chunk
  9. val buf: java.nio.CharBuffer
  10. def buffer(b: java.nio.CharBuffer): CharBuffer
    Definition Classes
    CharBufferBuffer
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  12. def collect[O2](pf: PartialFunction[Char, O2]): Chunk[O2]

    More efficient version of filter(pf.isDefinedAt).map(pf).

    More efficient version of filter(pf.isDefinedAt).map(pf).

    Definition Classes
    Chunk
  13. def collectWhile[O2](pf: PartialFunction[Char, O2]): Chunk[O2]

    More efficient version of takeWhile(pf.isDefinedAt).map(pf).

    More efficient version of takeWhile(pf.isDefinedAt).map(pf).

    Definition Classes
    Chunk
  14. def compact[O2 >: Char](implicit ct: ClassTag[O2]): ArraySlice[O2]

    Converts this chunk to a chunk backed by a single array.

    Converts this chunk to a chunk backed by a single array.

    Alternatively, call toIndexedChunk to get back a chunk with guaranteed O(1) indexed lookup while also minimizing copying.

    Definition Classes
    Chunk
  15. def contains[O2 >: Char](elem: O2)(implicit ev: Eq[O2]): Boolean

    Returns true if the Chunk contains the given element.

    Returns true if the Chunk contains the given element.

    Definition Classes
    Chunk
  16. def copyToArray[O2 >: Char](xs: Array[O2], start: Int): Unit

    Copies the elements of this chunk in to the specified array at the specified start index.

    Copies the elements of this chunk in to the specified array at the specified start index.

    Definition Classes
    BufferChunk
  17. def count(p: (Char) => Boolean): Int

    Counts the number of elements which satisfy a predicate.

    Counts the number of elements which satisfy a predicate.

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

    Drops the first n elements of this chunk.

    Drops the first n elements of this chunk.

    Definition Classes
    BufferChunk
  19. def dropRight(n: Int): Chunk[Char]

    Drops the right-most n elements of this chunk queue in a way that preserves chunk structure.

    Drops the right-most n elements of this chunk queue in a way that preserves chunk structure.

    Definition Classes
    Chunk
  20. def duplicate(b: java.nio.CharBuffer): java.nio.CharBuffer
    Definition Classes
    CharBufferBuffer
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def equals(a: Any): Boolean
    Definition Classes
    Chunk → AnyRef → Any
  23. def exists(p: (Char) => Boolean): Boolean

    Returns true if at least one element passes the predicate.

    Returns true if at least one element passes the predicate.

    Definition Classes
    Chunk
  24. def filter(p: (Char) => Boolean): Chunk[Char]

    Returns a chunk that has only the elements that satisfy the supplied predicate.

    Returns a chunk that has only the elements that satisfy the supplied predicate.

    Definition Classes
    Chunk
  25. def filterNot(p: (Char) => Boolean): Chunk[Char]

    Returns a chunk that has only the elements that do not satisfy the supplied predicate.

    Returns a chunk that has only the elements that do not satisfy the supplied predicate.

    Definition Classes
    Chunk
  26. def find(p: (Char) => Boolean): Option[Char]

    Returns the first element for which the predicate returns true or None if no elements satisfy the predicate.

    Returns the first element for which the predicate returns true or None if no elements satisfy the predicate.

    Definition Classes
    Chunk
  27. def flatMap[O2](f: (Char) => Chunk[O2]): Chunk[O2]

    Maps f over the elements of this chunk and concatenates the result.

    Maps f over the elements of this chunk and concatenates the result.

    Definition Classes
    Chunk
  28. def foldLeft[A](init: A)(f: (A, Char) => A): A

    Left-folds the elements of this chunk.

    Left-folds the elements of this chunk.

    Definition Classes
    Chunk
  29. def forall(p: (Char) => Boolean): Boolean

    Returns true if the predicate passes for all elements.

    Returns true if the predicate passes for all elements.

    Definition Classes
    Chunk
  30. def foreach(f: (Char) => Unit): Unit

    Invokes the supplied function for each element of this chunk.

    Invokes the supplied function for each element of this chunk.

    Definition Classes
    Chunk
  31. def foreachWithIndex(f: (Char, Int) => Unit): Unit

    Like foreach but includes the index of the element.

    Like foreach but includes the index of the element.

    Definition Classes
    Chunk
  32. def get(b: java.nio.CharBuffer, dest: Array[Char], offset: Int, length: Int): java.nio.CharBuffer
    Definition Classes
    CharBufferBuffer
  33. def get(b: java.nio.CharBuffer, n: Int): Char
    Definition Classes
    CharBufferBuffer
  34. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  35. def hashCode(): Int
    Definition Classes
    Chunk → AnyRef → Any
  36. def head: Option[Char]

    Gets the first element of this chunk.

    Gets the first element of this chunk.

    Definition Classes
    Chunk
  37. def indexWhere(p: (Char) => Boolean): Option[Int]

    Returns the index of the first element which passes the specified predicate (i.e., p(i) == true) or None if no elements pass the predicate.

    Returns the index of the first element which passes the specified predicate (i.e., p(i) == true) or None if no elements pass the predicate.

    Definition Classes
    Chunk
  38. final def isEmpty: Boolean

    True if size is zero, false otherwise.

    True if size is zero, false otherwise.

    Definition Classes
    Chunk
  39. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  40. def iterator: Iterator[Char]

    Creates an iterator that iterates the elements of this chunk.

    Creates an iterator that iterates the elements of this chunk. The returned iterator is not thread safe.

    Definition Classes
    Chunk
  41. def last: Option[Char]

    Gets the last element of this chunk.

    Gets the last element of this chunk.

    Definition Classes
    Chunk
  42. def map[O2](f: (Char) => O2): Chunk[O2]

    Creates a new chunk by applying f to each element in this chunk.

    Creates a new chunk by applying f to each element in this chunk.

    Definition Classes
    Chunk
  43. def mapAccumulate[S, O2](init: S)(f: (S, Char) => (S, O2)): (S, Chunk[O2])

    Maps the supplied stateful function over each element, outputting the final state and the accumulated outputs.

    Maps the supplied stateful function over each element, outputting the final state and the accumulated outputs. The first invocation of f uses init as the input state value. Each successive invocation uses the output state of the previous invocation.

    Definition Classes
    Chunk
  44. def mapFilter[O2](f: (Char) => Option[O2]): Chunk[O2]

    Maps the supplied function over each element and returns a chunk of just the defined results.

    Maps the supplied function over each element and returns a chunk of just the defined results.

    Definition Classes
    Chunk
  45. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  46. final def nonEmpty: Boolean

    False if size is zero, true otherwise.

    False if size is zero, true otherwise.

    Definition Classes
    Chunk
  47. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  48. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  49. val offset: Int
    Definition Classes
    CharBufferBuffer
  50. def productElementNames: Iterator[String]
    Definition Classes
    Product
  51. def readOnly(b: java.nio.CharBuffer): java.nio.CharBuffer
    Definition Classes
    CharBufferBuffer
  52. def reverseIterator: Iterator[Char]

    Creates an iterator that iterates the elements of this chunk in reverse order.

    Creates an iterator that iterates the elements of this chunk in reverse order. The returned iterator is not thread safe.

    Definition Classes
    Chunk
  53. def scanLeft[O2](z: O2)(f: (O2, Char) => O2): Chunk[O2]

    Like foldLeft but emits each intermediate result of f.

    Like foldLeft but emits each intermediate result of f.

    Definition Classes
    Chunk
  54. def scanLeftCarry[O2](z: O2)(f: (O2, Char) => O2): (Chunk[O2], O2)

    Like scanLeft except the final element is emitted as a standalone value instead of as the last element of the accumulated chunk.

    Like scanLeft except the final element is emitted as a standalone value instead of as the last element of the accumulated chunk.

    Equivalent to val b = a.scanLeft(z)(f); val (c, carry) = b.splitAt(b.size - 1).

    Definition Classes
    Chunk
  55. def scanLeft_[O2](z: O2, emitZero: Boolean)(f: (O2, Char) => O2): (Chunk[O2], O2)
    Attributes
    protected
    Definition Classes
    Chunk
  56. val size: Int

    Returns the number of elements in this chunk.

    Returns the number of elements in this chunk.

    Definition Classes
    CharBufferBufferChunk
  57. def splitAt(n: Int): (Chunk[Char], Chunk[Char])

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

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

    Definition Classes
    Chunk
  58. def splitAtChunk_(n: Int): (CharBuffer, CharBuffer)

    Splits this chunk in to two chunks at the specified index n, which is guaranteed to be in-bounds.

    Splits this chunk in to two chunks at the specified index n, which is guaranteed to be in-bounds.

    Attributes
    protected
    Definition Classes
    BufferChunk
  59. def startsWith[O2 >: Char](seq: Seq[O2]): Boolean

    Check to see if this starts with the items in the given seq.

    Check to see if this starts with the items in the given seq.

    Definition Classes
    Chunk
  60. def startsWith[O2 >: Char](chunk: Chunk[O2]): Boolean

    Check to see if this starts with the items in the given chunk.

    Check to see if this starts with the items in the given chunk.

    Definition Classes
    Chunk
  61. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  62. def take(n: Int): Chunk[Char]

    Takes the first n elements of this chunk.

    Takes the first n elements of this chunk.

    Definition Classes
    BufferChunk
  63. def takeRight(n: Int): Chunk[Char]

    Takes the right-most n elements of this chunk queue in a way that preserves chunk structure.

    Takes the right-most n elements of this chunk queue in a way that preserves chunk structure.

    Definition Classes
    Chunk
  64. def thisClassTag: ClassTag[Any]
    Attributes
    protected
    Definition Classes
    Chunk
  65. def to(collector: Collector[Char]): Out

    Converts this chunk to a new collection using the supplied collector.

    Converts this chunk to a new collection using the supplied collector.

    Definition Classes
    Chunk
    Example:
    1. scala> Chunk(1, 2, 3).to(Set)
  66. def toArray[O2 >: Char](implicit o2ct: ClassTag[O2]): Array[O2]

    Copies the elements of this chunk to an array.

    Copies the elements of this chunk to an array.

    Definition Classes
    BufferChunk
  67. def toArraySeq[O2 >: Char](implicit arg0: ClassTag[O2]): ArraySeq[O2]
    Definition Classes
    Chunk213And3Compat
  68. def toArraySeqUntagged: ArraySeq[Char]
    Definition Classes
    Chunk213And3Compat
  69. def toArraySlice[O2 >: Char](implicit ct: ClassTag[O2]): ArraySlice[O2]

    Converts this chunk to a Chunk.ArraySlice.

    Converts this chunk to a Chunk.ArraySlice.

    Definition Classes
    CharBufferChunk
  70. def toBitVector[B >: Char](implicit ev: =:=[B, Byte]): BitVector

    Converts this chunk to a scodec-bits BitVector.

    Converts this chunk to a scodec-bits BitVector.

    Definition Classes
    Chunk
  71. def toByteBuffer[B >: Char](implicit ev: =:=[B, Byte]): java.nio.ByteBuffer

    Converts this chunk to a java.nio.ByteBuffer.

    Converts this chunk to a java.nio.ByteBuffer.

    Definition Classes
    Chunk
    Note

    that even "read-only" interaction with a ByteBuffer may increment its position, so this method should be considered as unsafely allocating mutable state.

  72. def toByteVector[B >: Char](implicit ev: =:=[B, Byte]): ByteVector

    Converts this chunk to a scodec-bits ByteVector.

    Converts this chunk to a scodec-bits ByteVector.

    Definition Classes
    CharBufferChunk
  73. def toChain: Chain[Char]

    Converts this chunk to a chain.

    Converts this chunk to a chain.

    Definition Classes
    Chunk
  74. def toCharBuffer[C >: Char](implicit ev: =:=[C, Char]): java.nio.CharBuffer

    Converts this chunk to a java.nio.CharBuffer.

    Converts this chunk to a java.nio.CharBuffer.

    Definition Classes
    CharBufferChunk
    Note

    that even "read-only" interaction with a CharBuffer may increment its position, so this method should be considered as unsafely allocating mutable state.

  75. def toIndexedChunk: Chunk[Char]

    Returns a chunk with guaranteed O(1) lookup by index.

    Returns a chunk with guaranteed O(1) lookup by index.

    Unlike compact, this operation does not copy any elements unless this chunk does not provide O(1) lookup by index -- e.g., a chunk built via 1 or more usages of ++.

    Definition Classes
    Chunk
  76. def toList: List[Char]

    Converts this chunk to a list.

    Converts this chunk to a list.

    Definition Classes
    Chunk
  77. def toNel: Option[NonEmptyList[Char]]

    Converts this chunk to a NonEmptyList

    Converts this chunk to a NonEmptyList

    Definition Classes
    Chunk
  78. def toString(): String
    Definition Classes
    Chunk → AnyRef → Any
  79. def toVector: Vector[Char]

    Converts this chunk to a vector.

    Converts this chunk to a vector.

    Definition Classes
    Chunk
  80. def traverse[F[_], O2](f: (Char) => F[O2])(implicit F: Applicative[F]): F[Chunk[O2]]
    Definition Classes
    Chunk
  81. def traverseFilter[F[_], O2](f: (Char) => F[Option[O2]])(implicit F: Applicative[F]): F[Chunk[O2]]
    Definition Classes
    Chunk
  82. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  83. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  84. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  85. def zip[O2](that: Chunk[O2]): Chunk[(Char, O2)]

    Zips this chunk the the supplied chunk, returning a chunk of tuples.

    Zips this chunk the the supplied chunk, returning a chunk of tuples.

    Definition Classes
    Chunk
  86. def zipWith[O2, O3](that: Chunk[O2])(f: (Char, O2) => O3): Chunk[O3]

    Zips this chunk with the supplied chunk, passing each pair to f, resulting in an output chunk.

    Zips this chunk with the supplied chunk, passing each pair to f, resulting in an output chunk.

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

    Zips the elements of the input chunk with its indices, and returns the new chunk.

    Zips the elements of the input chunk with its indices, and returns the new chunk.

    Definition Classes
    Chunk
    Example:
    1. scala> Chunk("The", "quick", "brown", "fox").zipWithIndex.toList
      res0: List[(String, Int)] = List((The,0), (quick,1), (brown,2), (fox,3))

Deprecated Value Members

  1. def compactUntagged[O2 >: Char]: ArraySlice[O2]

    Like compact but does not require a ClassTag.

    Like compact but does not require a ClassTag. Elements are boxed and stored in an Array[Any].

    Definition Classes
    Chunk
    Annotations
    @deprecated
    Deprecated

    (Since version 3.1.6) Unsound when used with primitives, use compactBoxed instead

  2. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Product

Inherited from Equals

Inherited from Chunk[Char]

Inherited from ChunkRuntimePlatform[Char]

Inherited from ChunkPlatform[Char]

Inherited from Chunk213And3Compat[Char]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped