doubleCodec

mcodec.StdCodecs.doubleCodec
object doubleCodec extends SimpleCodec[Double]

Attributes

Source
StdCodecs.scala
Graph
Supertypes
trait MCodec[Double]
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[Double | Null]

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
SimpleCodec
Source
BaseCodecs.scala