trait ReadableBuffer extends AnyRef
A readable buffer.
The implementation MUST ensure it reads data in little endian when needed.
- Alphabetic
- By Inheritance
- ReadableBuffer
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def discard(n: Int): Unit
Sets the read index to
index + n
(in other words, skipsn
bytes). - abstract def duplicate(): ReadableBuffer
- abstract def index: Int
Returns the current read index of this buffer.
- abstract def index_=(i: Int): Unit
- abstract def readByte(): Byte
Reads a
Byte
from this buffer. - abstract def readBytes(bytes: Array[Byte]): Unit
Fills the given array with the bytes read from this buffer.
- abstract def readDouble(): Double
Reads a
Double
from this buffer. - abstract def readInt(): Int
Reads an
Int
from this buffer. - abstract def readLong(): Long
Reads a
Long
from this buffer. - abstract def readable(): Int
Returns the number of readable remaining bytes of this buffer.
- abstract def size: Int
Returns the buffer size.
- abstract def slice(n: Int): ReadableBuffer
Returns a new instance of
ReadableBuffer
, which starts at the current index and containsn
bytes.Returns a new instance of
ReadableBuffer
, which starts at the current index and containsn
bytes.This method does not update the read index of the original buffer.
- abstract def toWritableBuffer: WritableBuffer
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- Implicit
- This member is added by an implicit conversion from ReadableBuffer toany2stringadd[ReadableBuffer] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
- def ->[B](y: B): (ReadableBuffer, B)
- Implicit
- This member is added by an implicit conversion from ReadableBuffer toArrowAssoc[ReadableBuffer] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def ensuring(cond: (ReadableBuffer) => Boolean, msg: => Any): ReadableBuffer
- Implicit
- This member is added by an implicit conversion from ReadableBuffer toEnsuring[ReadableBuffer] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: (ReadableBuffer) => Boolean): ReadableBuffer
- Implicit
- This member is added by an implicit conversion from ReadableBuffer toEnsuring[ReadableBuffer] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean, msg: => Any): ReadableBuffer
- Implicit
- This member is added by an implicit conversion from ReadableBuffer toEnsuring[ReadableBuffer] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean): ReadableBuffer
- Implicit
- This member is added by an implicit conversion from ReadableBuffer toEnsuring[ReadableBuffer] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from ReadableBuffer toStringFormat[ReadableBuffer] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def readArray(length: Int): Array[Byte]
Reads an array of Byte of the given length.
Reads an array of Byte of the given length.
- length
the length of the newly created array.
- def readCString(): String
Reads a UTF-8 C-Style String.
- def readString(): String
Reads a UTF-8 String.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
- Deprecated
(Since version ) see corresponding Javadoc for more information.
- def →[B](y: B): (ReadableBuffer, B)
- Implicit
- This member is added by an implicit conversion from ReadableBuffer toArrowAssoc[ReadableBuffer] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.