byteArrayCodec

mcodec.StdCodecs.byteArrayCodec

Attributes

Source
StdCodecs.scala
Graph
Supertypes
trait MCodec[Array[Byte]]
class Object
trait Matchable
class Any
Show all
Self type

Members list

Value members

Concrete methods

Attributes

Source
StdCodecs.scala

Attributes

Source
StdCodecs.scala

Inherited methods

final def nullable: MCodec[Array[Byte] | Null]

Attributes

Inherited from:
MCodec
Source
MCodec.scala
final def read(input: Input): Array[Byte]

Attributes

Inherited from:
NullSafeCodec
Source
BaseCodecs.scala
final def readNonNull(input: Input): Array[Byte]

Attributes

Inherited from:
SimpleCodec
Source
BaseCodecs.scala
final inline def transform[U](inline onWrite: U => Array[Byte], inline onRead: Array[Byte] => U): MCodec[U]

Attributes

Inherited from:
MCodec
Source
MCodec.scala
final def transformed[U](onRead: Array[Byte] => U)(onWrite: U => Array[Byte]): MCodec[U]

Attributes

Inherited from:
MCodec
Source
MCodec.scala
final def write(output: Output, value: Array[Byte]): Unit

Attributes

Inherited from:
NullSafeCodec
Source
BaseCodecs.scala
final def writeNonNull(output: Output, value: Array[Byte]): Unit

Attributes

Inherited from:
SimpleCodec
Source
BaseCodecs.scala