trait EncoderDecoderMixin extends LocalBufferMixin
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- EncoderDecoderMixin
- LocalBufferMixin
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
-
final
class
LocalByteBuffer extends LocalBuffer[ByteBuffer]
- Definition Classes
- LocalBufferMixin
-
final
class
LocalCharBuffer extends LocalBuffer[CharBuffer]
Use with OnStack idiom for temporary char buffers
Use with OnStack idiom for temporary char buffers
- Definition Classes
- LocalBufferMixin
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
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getDecoder(charset: BitsCharset): BitsCharsetDecoder
- def getDecoderInfo(charset: BitsCharset): DecoderInfo
- def getEncoder(charset: BitsCharset): BitsCharsetEncoder
- def getEncoderInfo(charset: BitsCharset): EncoderInfo
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
lengthInBits(str: String, bitsCharset: BitsCharset): Long
Given a string and charset, compute how many bits it contains.
Given a string and charset, compute how many bits it contains.
This only has to scan the string if the charset is a variable-width encoding. Otherwise this is just constant time.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
truncateToBits(str: String, bitsCharset: BitsCharset, nBits: Long): String
Truncates the string to what will fit.
Truncates the string to what will fit.
This leaves a potential fragment space. This space might be a few bits (non byte-sized space), or more than one byte if say the string is utf-8, the last character needs 3 bytes, but only 2 bytes + a few more bits are available.
That unused space is supposed to get filled by the RightFillUnparser with fillbyte
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
lazy val
withLocalByteBuffer: LocalStack[LocalByteBuffer]
- Definition Classes
- LocalBufferMixin
-
final
lazy val
withLocalCharBuffer: LocalStack[LocalCharBuffer]
- Definition Classes
- LocalBufferMixin