MCPcopy Create free account
hub / github.com/francoispqt/gojay / FloatNull

Method FloatNull

decode_number_float.go:470–472  ·  view source on GitHub ↗

FloatNull decodes the JSON value within an object or an array to a *float64. If next key value overflows float64, an InvalidUnmarshalError error will be returned.

(v **float64)

Source from the content-addressed store, hash-verified

468// FloatNull decodes the JSON value within an object or an array to a *float64.
469// If next key value overflows float64, an InvalidUnmarshalError error will be returned.
470func (dec *Decoder) FloatNull(v **float64) error {
471 return dec.Float64Null(v)
472}
473
474// Float64 decodes the JSON value within an object or an array to a *float64.
475// If next key value overflows float64, an InvalidUnmarshalError error will be returned.

Callers 1

TestDecoderFloat64NullFunction · 0.80

Calls 1

Float64NullMethod · 0.95

Tested by 1

TestDecoderFloat64NullFunction · 0.64