object MsgPack
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MsgPack
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- final case class MArray(a: Vector[MsgPack]) extends MsgPack with Product with Serializable
- final case class MBigInt(a: BigInt) extends MsgPack with Product with Serializable
- final case class MBin(a: Array[Byte]) extends MsgPack with Product with Serializable
- final case class MBool(a: Boolean) extends MsgPack with Product with Serializable
- final case class MByte(a: Byte) extends MsgPack with Product with Serializable
- final case class MDouble(a: Double) extends MsgPack with Product with Serializable
- final case class MExtension(typ: Byte, size: Int, a: Array[Byte]) extends MsgPack with Product with Serializable
- final case class MFloat(a: Float) extends MsgPack with Product with Serializable
- final case class MInt(a: Int) extends MsgPack with Product with Serializable
- final case class MLong(a: Long) extends MsgPack with Product with Serializable
- final case class MMap(a: HashMap[MsgPack, MsgPack]) extends MsgPack with Product with Serializable
- final case class MShort(a: Short) extends MsgPack with Product with Serializable
- final case class MString(a: String) extends MsgPack with Product with Serializable
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 val False: MBool
- final val True: MBool
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mArr(xs: Vector[MsgPack]): MsgPack
- def mArr(xs: MsgPack*): MsgPack
- def mBigInt(x: BigInt): MsgPack
- def mBin(x: Array[Byte]): MsgPack
- def mBool(x: Boolean): MsgPack
- def mByte(x: Byte): MsgPack
- def mDouble(x: Double): MsgPack
- def mEmpty: MsgPack
- def mFloat(x: Float): MsgPack
- def mInt(x: Int): MsgPack
- def mLong(x: Long): MsgPack
- def mMap(xs: HashMap[MsgPack, MsgPack]): MsgPack
- def mMap(xs: (MsgPack, MsgPack)*): MsgPack
- def mNil: MsgPack
- def mShort(x: Short): MsgPack
- def mStr(x: String): MsgPack
-
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()
- def pack(msgPack: MsgPack, config: PackerConfig): Array[Byte]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- def unpack(buffer: MessageUnpacker): MsgPack
- def unpack(bytes: Array[Byte], config: UnpackerConfig): MsgPack
-
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
- @native() @throws( ... )
- object MEmpty extends MsgPack with Product with Serializable
- object MNil extends MsgPack with Product with Serializable