json

package
v1.20.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 6, 2020 License: MIT Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Encoder added in v1.7.0

type Encoder struct{}

func (Encoder) AppendArrayDelim added in v1.7.0

func (Encoder) AppendArrayDelim(dst []byte) []byte

AppendArrayDelim adds markers to indicate end of a particular array element.

func (Encoder) AppendArrayEnd added in v1.7.0

func (Encoder) AppendArrayEnd(dst []byte) []byte

AppendArrayEnd adds markers to indicate the end of an array.

func (Encoder) AppendArrayStart added in v1.7.0

func (Encoder) AppendArrayStart(dst []byte) []byte

AppendArrayStart adds markers to indicate the start of an array.

func (Encoder) AppendBeginMarker added in v1.7.0

func (Encoder) AppendBeginMarker(dst []byte) []byte

AppendBeginMarker inserts a map start into the dst byte array.

func (Encoder) AppendBool added in v1.7.0

func (Encoder) AppendBool(dst []byte, val bool) []byte

AppendBool converts the input bool to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendBools added in v1.7.0

func (Encoder) AppendBools(dst []byte, vals []bool) []byte

AppendBools encodes the input bools to json and appends the encoded string list to the input byte slice.

func (Encoder) AppendBytes added in v1.7.0

func (Encoder) AppendBytes(dst, s []byte) []byte

AppendBytes is a mirror of appendString with []byte arg

func (Encoder) AppendDuration added in v1.7.0

func (e Encoder) AppendDuration(dst []byte, d time.Duration, unit time.Duration, useInt bool) []byte

AppendDuration formats the input duration with the given unit & format and appends the encoded string to the input byte slice.

func (Encoder) AppendDurations added in v1.7.0

func (e Encoder) AppendDurations(dst []byte, vals []time.Duration, unit time.Duration, useInt bool) []byte

AppendDurations formats the input durations with the given unit & format and appends the encoded string list to the input byte slice.

func (Encoder) AppendEndMarker added in v1.7.0

func (Encoder) AppendEndMarker(dst []byte) []byte

AppendEndMarker inserts a map end into the dst byte array.

func (Encoder) AppendFloat32 added in v1.7.0

func (Encoder) AppendFloat32(dst []byte, val float32) []byte

AppendFloat32 converts the input float32 to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendFloat64 added in v1.7.0

func (Encoder) AppendFloat64(dst []byte, val float64) []byte

AppendFloat64 converts the input float64 to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendFloats32 added in v1.7.0

func (Encoder) AppendFloats32(dst []byte, vals []float32) []byte

AppendFloats32 encodes the input float32s to json and appends the encoded string list to the input byte slice.

func (Encoder) AppendFloats64 added in v1.7.0

func (Encoder) AppendFloats64(dst []byte, vals []float64) []byte

AppendFloats64 encodes the input float64s to json and appends the encoded string list to the input byte slice.

func (Encoder) AppendHex added in v1.7.0

func (Encoder) AppendHex(dst, s []byte) []byte

AppendHex encodes the input bytes to a hex string and appends the encoded string to the input byte slice.

The operation loops though each byte and encodes it as hex using the hex lookup table.

func (Encoder) AppendIPAddr added in v1.7.0

func (e Encoder) AppendIPAddr(dst []byte, ip net.IP) []byte

AppendIPAddr adds IPv4 or IPv6 address to dst.

func (Encoder) AppendIPPrefix added in v1.7.0

func (e Encoder) AppendIPPrefix(dst []byte, pfx net.IPNet) []byte

AppendIPPrefix adds IPv4 or IPv6 Prefix (address & mask) to dst.

func (Encoder) AppendInt added in v1.7.0

func (Encoder) AppendInt(dst []byte, val int) []byte

AppendInt converts the input int to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendInt16 added in v1.7.0

func (Encoder) AppendInt16(dst []byte, val int16) []byte

AppendInt16 converts the input int16 to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendInt32 added in v1.7.0

func (Encoder) AppendInt32(dst []byte, val int32) []byte

AppendInt32 converts the input int32 to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendInt64 added in v1.7.0

func (Encoder) AppendInt64(dst []byte, val int64) []byte

AppendInt64 converts the input int64 to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendInt8 added in v1.7.0

func (Encoder) AppendInt8(dst []byte, val int8) []byte

AppendInt8 converts the input []int8 to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendInterface added in v1.7.0

func (e Encoder) AppendInterface(dst []byte, i interface{}) []byte

AppendInterface marshals the input interface to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendInts added in v1.7.0

func (Encoder) AppendInts(dst []byte, vals []int) []byte

AppendInts encodes the input ints to json and appends the encoded string list to the input byte slice.

func (Encoder) AppendInts16 added in v1.7.0

func (Encoder) AppendInts16(dst []byte, vals []int16) []byte

AppendInts16 encodes the input int16s to json and appends the encoded string list to the input byte slice.

func (Encoder) AppendInts32 added in v1.7.0

func (Encoder) AppendInts32(dst []byte, vals []int32) []byte

AppendInts32 encodes the input int32s to json and appends the encoded string list to the input byte slice.

func (Encoder) AppendInts64 added in v1.7.0

func (Encoder) AppendInts64(dst []byte, vals []int64) []byte

AppendInts64 encodes the input int64s to json and appends the encoded string list to the input byte slice.

func (Encoder) AppendInts8 added in v1.7.0

func (Encoder) AppendInts8(dst []byte, vals []int8) []byte

AppendInts8 encodes the input int8s to json and appends the encoded string list to the input byte slice.

func (Encoder) AppendKey added in v1.7.0

func (e Encoder) AppendKey(dst []byte, key string) []byte

AppendKey appends a new key to the output JSON.

func (Encoder) AppendLineBreak added in v1.7.0

func (Encoder) AppendLineBreak(dst []byte) []byte

AppendLineBreak appends a line break.

func (Encoder) AppendMACAddr added in v1.7.0

func (e Encoder) AppendMACAddr(dst []byte, ha net.HardwareAddr) []byte

AppendMACAddr adds MAC address to dst.

func (Encoder) AppendNil added in v1.7.0

func (Encoder) AppendNil(dst []byte) []byte

AppendNil inserts a 'Nil' object into the dst byte array.

func (Encoder) AppendObjectData added in v1.7.0

func (Encoder) AppendObjectData(dst []byte, o []byte) []byte

AppendObjectData takes in an object that is already in a byte array and adds it to the dst.

func (Encoder) AppendString added in v1.7.0

func (Encoder) AppendString(dst []byte, s string) []byte

AppendString encodes the input string to json and appends the encoded string to the input byte slice.

The operation loops though each byte in the string looking for characters that need json or utf8 encoding. If the string does not need encoding, then the string is appended in it's entirety to the byte slice. If we encounter a byte that does need encoding, switch up the operation and perform a byte-by-byte read-encode-append.

func (Encoder) AppendStrings added in v1.7.0

func (e Encoder) AppendStrings(dst []byte, vals []string) []byte

AppendStrings encodes the input strings to json and appends the encoded string list to the input byte slice.

func (Encoder) AppendTime added in v1.7.0

func (e Encoder) AppendTime(dst []byte, t time.Time, format string) []byte

AppendTime formats the input time with the given format and appends the encoded string to the input byte slice.

func (Encoder) AppendTimes added in v1.7.0

func (Encoder) AppendTimes(dst []byte, vals []time.Time, format string) []byte

AppendTimes converts the input times with the given format and appends the encoded string list to the input byte slice.

func (Encoder) AppendUint added in v1.7.0

func (Encoder) AppendUint(dst []byte, val uint) []byte

AppendUint converts the input uint to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendUint16 added in v1.7.0

func (Encoder) AppendUint16(dst []byte, val uint16) []byte

AppendUint16 converts the input uint16 to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendUint32 added in v1.7.0

func (Encoder) AppendUint32(dst []byte, val uint32) []byte

AppendUint32 converts the input uint32 to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendUint64 added in v1.7.0

func (Encoder) AppendUint64(dst []byte, val uint64) []byte

AppendUint64 converts the input uint64 to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendUint8 added in v1.7.0

func (Encoder) AppendUint8(dst []byte, val uint8) []byte

AppendUint8 converts the input uint8 to a string and appends the encoded string to the input byte slice.

func (Encoder) AppendUints added in v1.7.0

func (Encoder) AppendUints(dst []byte, vals []uint) []byte

AppendUints encodes the input uints to json and appends the encoded string list to the input byte slice.

func (Encoder) AppendUints16 added in v1.7.0

func (Encoder) AppendUints16(dst []byte, vals []uint16) []byte

AppendUints16 encodes the input uint16s to json and appends the encoded string list to the input byte slice.

func (Encoder) AppendUints32 added in v1.7.0

func (Encoder) AppendUints32(dst []byte, vals []uint32) []byte

AppendUints32 encodes the input uint32s to json and appends the encoded string list to the input byte slice.

func (Encoder) AppendUints64 added in v1.7.0

func (Encoder) AppendUints64(dst []byte, vals []uint64) []byte

AppendUints64 encodes the input uint64s to json and appends the encoded string list to the input byte slice.

func (Encoder) AppendUints8 added in v1.7.0

func (Encoder) AppendUints8(dst []byte, vals []uint8) []byte

AppendUints8 encodes the input uint8s to json and appends the encoded string list to the input byte slice.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL