Documentation
¶
Overview ¶
Package json provides JSON serialization utilities for numeric types and a gorilla/rpc Codec that normalizes lowercase method names.
Index ¶
Constants ¶
View Source
const Null = "null"
Null is the string representation of the JSON null literal.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Float32 ¶
type Float32 float32
Float32 is a float32 that marshals/unmarshals as a JSON string with 4 digit fixed-point precision.
func (Float32) MarshalJSON ¶
func (*Float32) UnmarshalJSON ¶
type Float64 ¶
type Float64 float64
Float64 is a float64 that marshals/unmarshals as a JSON string.
func (Float64) MarshalJSON ¶
func (*Float64) UnmarshalJSON ¶
type Uint8 ¶
type Uint8 uint8
Uint8 is a uint8 that marshals/unmarshals as a JSON string.
func (Uint8) MarshalJSON ¶
func (*Uint8) UnmarshalJSON ¶
type Uint16 ¶
type Uint16 uint16
Uint16 is a uint16 that marshals/unmarshals as a JSON string.
func (Uint16) MarshalJSON ¶
func (*Uint16) UnmarshalJSON ¶
type Uint32 ¶
type Uint32 uint32
Uint32 is a uint32 that marshals/unmarshals as a JSON string.
func (Uint32) MarshalJSON ¶
func (*Uint32) UnmarshalJSON ¶
Click to show internal directories.
Click to hide internal directories.