Documentation
¶
Index ¶
- Constants
- func FormatBool(w io.Writer, value interface{}) error
- func FormatByte(w io.Writer, value interface{}) error
- func FormatBytes(r io.Writer, value interface{}) error
- func FormatDouble(w io.Writer, value interface{}) error
- func FormatFloat(w io.Writer, value interface{}) error
- func FormatInt(w io.Writer, value interface{}) error
- func FormatLong(w io.Writer, value interface{}) error
- func FormatNullable(w io.Writer, value interface{}) error
- func FormatShort(w io.Writer, value interface{}) error
- func FormatSize(w io.Writer, value interface{}) error
- func FormatString(w io.Writer, value interface{}) error
- func FormatTime(w io.Writer, value interface{}) error
- func FormatType(w io.Writer, value interface{}) error
- func FormatUuid(r io.Writer, value interface{}) error
- func ParseBool(r io.Reader, into interface{}) error
- func ParseByte(r io.Reader, into interface{}) error
- func ParseBytes(r io.Reader, data []byte) error
- func ParseDouble(r io.Reader, into interface{}) error
- func ParseFloat(r io.Reader, into interface{}) error
- func ParseInt(r io.Reader, into interface{}) error
- func ParseLong(r io.Reader, into interface{}) error
- func ParseNullable(r io.Reader, into interface{}) error
- func ParseShort(r io.Reader, into interface{}) error
- func ParseSize(r io.Reader, into interface{}) error
- func ParseString(r io.Reader, into interface{}) error
- func ParseTime(r io.Reader, into interface{}) error
- func ParseType(r io.Reader, into interface{}) error
- func ParseUUID(r io.Reader, into interface{}) error
- func Version() int32
- type EncoderWriteError
- type ParseError
- type TypeEncoderError
Constants ¶
View Source
const ( UTF8_CHARSET = "UTF-8" SIZEOF_SHORT = 2 SIZEOF_INT = 4 SIZEOF_LONG = 8 NULL_BYTE = 0x80 TRUE_BYTE = 1 FALSE_BYTE = 0 MAX_SHIFT = 7 NULL_SHIFT = 6 BYTE_MASK = 255 NEXT_MASK = -128 NULL_NEXT_MASK = 64 LAST_MASK = 0 NULL_LSB_MASK = 63 LSB_MASK = 127 TEMP_CAPACITY = 256 )
View Source
const AgeDelta = 621355968000000
Variables ¶
This section is empty.
Functions ¶
func FormatBool ¶
func FormatByte ¶
func FormatBytes ¶
func FormatDouble ¶
func FormatFloat ¶
func FormatLong ¶
func FormatNullable ¶
func FormatShort ¶
func FormatSize ¶
func FormatString ¶
func FormatTime ¶
func FormatType ¶
func FormatUuid ¶
func ParseDouble ¶
func ParseFloat ¶
func ParseNullable ¶
func ParseShort ¶
func ParseString ¶
Types ¶
type EncoderWriteError ¶
type EncoderWriteError struct { Mame string // contains filtered or unexported fields }
func (*EncoderWriteError) Error ¶
func (e *EncoderWriteError) Error() string
type ParseError ¶
func (*ParseError) Error ¶
func (e *ParseError) Error() string
type TypeEncoderError ¶
func (*TypeEncoderError) Error ¶
func (e *TypeEncoderError) Error() string
Click to show internal directories.
Click to hide internal directories.