final 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
- Alphabetic
- By Inheritance
- CharBuffer
- Product
- Equals
- Buffer
- KnownElementType
- Chunk
- ChunkPlatform
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new CharBuffer(buf: java.nio.CharBuffer, offset: Int, size: Int)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(i: Int): Char
Returns the element at the specified index.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val buf: java.nio.CharBuffer
- def buffer(b: java.nio.CharBuffer): CharBuffer
- Definition Classes
- CharBuffer → Buffer
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- 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
- 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.
- def drop(n: Int): Chunk[Char]
Drops the first
n
elements of this chunk. - def duplicate(b: java.nio.CharBuffer): java.nio.CharBuffer
- Definition Classes
- CharBuffer → Buffer
- def elementClassTag: ClassTag[Char]
- Definition Classes
- Buffer → KnownElementType
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(a: Any): Boolean
- Definition Classes
- Chunk → AnyRef → Any
- 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
- 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
- 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
- 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
- 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
- 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
- def get(b: java.nio.CharBuffer, dest: Array[Char], offset: Int, length: Int): java.nio.CharBuffer
- Definition Classes
- CharBuffer → Buffer
- def get(b: java.nio.CharBuffer, n: Int): Char
- Definition Classes
- CharBuffer → Buffer
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- Chunk → AnyRef → Any
- def head: Option[Char]
Gets the first element of this chunk.
Gets the first element of this chunk.
- Definition Classes
- Chunk
- def indexWhere(p: (Char) => Boolean): Option[Int]
Returns the index of the first element which passes the specified predicate (i.e.,
p(i) == true
) orNone
if no elements pass the predicate.Returns the index of the first element which passes the specified predicate (i.e.,
p(i) == true
) orNone
if no elements pass the predicate.- Definition Classes
- Chunk
- final def isEmpty: Boolean
True if size is zero, false otherwise.
True if size is zero, false otherwise.
- Definition Classes
- Chunk
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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
- def knownElementType[B](implicit classTag: ClassTag[B]): Boolean
Returns true if this chunk is known to have elements of type
B
.Returns true if this chunk is known to have elements of type
B
. This is determined by checking if the chunk type mixes inChunk.KnownElementType
.- Definition Classes
- Chunk
- def last: Option[Char]
Gets the last element of this chunk.
Gets the last element of this chunk.
- Definition Classes
- Chunk
- 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
- 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
usesinit
as the input state value. Each successive invocation uses the output state of the previous invocation.- Definition Classes
- Chunk
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def nonEmpty: Boolean
False if size is zero, true otherwise.
False if size is zero, true otherwise.
- Definition Classes
- Chunk
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val offset: Int
- Definition Classes
- CharBuffer → Buffer
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def readOnly(b: java.nio.CharBuffer): java.nio.CharBuffer
- Definition Classes
- CharBuffer → Buffer
- 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
- def scanLeft[O2](z: O2)(f: (O2, Char) => O2): Chunk[O2]
Like
foldLeft
but emits each intermediate result off
.Like
foldLeft
but emits each intermediate result off
.- Definition Classes
- Chunk
- 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
- def scanLeft_[O2](z: O2, emitZero: Boolean)(f: (O2, Char) => O2): (Chunk[O2], O2)
- Attributes
- protected
- Definition Classes
- Chunk
- val size: Int
Returns the number of elements in this chunk.
Returns the number of elements in this chunk.
- Definition Classes
- CharBuffer → Buffer → Chunk
- 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
- 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. - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def take(n: Int): Chunk[Char]
Takes the first
n
elements of this chunk. - def toArray[O2 >: Char](implicit arg0: ClassTag[O2]): Array[O2]
Copies the elements of this chunk to an array.
- def toArraySeq[O2 >: Char](implicit arg0: ClassTag[O2]): ArraySeq[O2]
- Definition Classes
- ChunkPlatform
- def toArraySeqUntagged: ArraySeq[Char]
- Definition Classes
- ChunkPlatform
- 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
- def toBooleans[B >: Char](implicit ev: =:=[B, Boolean]): Booleans
Converts this chunk to a
Chunk.Booleans
, allowing access to the underlying array of elements.Converts this chunk to a
Chunk.Booleans
, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of booleans, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.- Definition Classes
- Chunk
- 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
- 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
- Chunk
- def toBytes[B >: Char](implicit ev: =:=[B, Byte]): Bytes
Converts this chunk to a
Chunk.Bytes
, allowing access to the underlying array of elements.Converts this chunk to a
Chunk.Bytes
, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of bytes, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.- Definition Classes
- Chunk
- def toChain: Chain[Char]
Converts this chunk to a chain.
Converts this chunk to a chain.
- Definition Classes
- Chunk
- def toDoubles[B >: Char](implicit ev: =:=[B, Double]): Doubles
Converts this chunk to a
Chunk.Doubles
, allowing access to the underlying array of elements.Converts this chunk to a
Chunk.Doubles
, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of doubles, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.- Definition Classes
- Chunk
- def toFloats[B >: Char](implicit ev: =:=[B, Float]): Floats
Converts this chunk to a
Chunk.Floats
, allowing access to the underlying array of elements.Converts this chunk to a
Chunk.Floats
, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of doubles, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.- Definition Classes
- Chunk
- def toInts[B >: Char](implicit ev: =:=[B, Int]): Ints
Converts this chunk to a
Chunk.Ints
, allowing access to the underlying array of elements.Converts this chunk to a
Chunk.Ints
, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of bytes, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.- Definition Classes
- Chunk
- def toList: List[Char]
Converts this chunk to a list.
Converts this chunk to a list.
- Definition Classes
- Chunk
- def toLongs[B >: Char](implicit ev: =:=[B, Long]): Longs
Converts this chunk to a
Chunk.Longs
, allowing access to the underlying array of elements.Converts this chunk to a
Chunk.Longs
, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of longs, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.- Definition Classes
- Chunk
- def toNel: Option[NonEmptyList[Char]]
Converts this chunk to a NonEmptyList
Converts this chunk to a NonEmptyList
- Definition Classes
- Chunk
- def toShorts[B >: Char](implicit ev: =:=[B, Short]): Shorts
Converts this chunk to a
Chunk.Shorts
, allowing access to the underlying array of elements.Converts this chunk to a
Chunk.Shorts
, allowing access to the underlying array of elements. If this chunk is already backed by an unboxed array of bytes, this method runs in constant time. Otherwise, this method will copy of the elements of this chunk in to a single array.- Definition Classes
- Chunk
- def toString(): String
- Definition Classes
- Chunk → AnyRef → Any
- def toVector: Vector[Char]
Converts this chunk to a vector.
Converts this chunk to a vector.
- Definition Classes
- Chunk
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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
- 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
- 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
scala> Chunk("The", "quick", "brown", "fox").zipWithIndex.toList res0: List[(String, Int)] = List((The,0), (quick,1), (brown,2), (fox,3))
Example:
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated