intCodec

mcodec.StdCodecs.intCodec
object intCodec extends SimpleCodec[Int]

Attributes

Source
StdCodecs.scala
Graph
Supertypes
trait SimpleCodec[Int]
trait MCodec[Int]
class Object
trait Matchable
class Any
Show all
Self type
StdCodecs.this.StdCodecs.this.intCodec.type

Members list

Value members

Concrete methods

Attributes

Source
StdCodecs.scala
def writeSimple(out: SimpleOutput, v: Int): Unit

Attributes

Source
StdCodecs.scala

Inherited methods

final def nullable: MCodec[Int | Null]

Attributes

Inherited from:
MCodec
Source
MCodec.scala
final def read(input: Input): Int

Attributes

Inherited from:
NullSafeCodec
Source
BaseCodecs.scala
final def readNonNull(input: Input): Int

Attributes

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

Attributes

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

Attributes

Inherited from:
MCodec
Source
MCodec.scala
final def write(output: Output, value: Int): Unit

Attributes

Inherited from:
NullSafeCodec
Source
BaseCodecs.scala
final def writeNonNull(output: Output, value: Int): Unit

Attributes

Inherited from:
SimpleCodec
Source
BaseCodecs.scala