
codecs.basic.DoubleJSONCodec.kt Maven / Gradle / Ivy
package com.github.fluidsonic.fluid.json
object DoubleJSONCodec : AbstractJSONCodec() {
override fun JSONDecoder.decode(valueType: JSONCodingType) =
readDouble()
override fun JSONEncoder.encode(value: Double) =
writeDouble(value)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy