Documentation ¶
Overview ¶
Package bele 提供了大小端的转换操作
be是big endian的缩写,即大端 le是little endian的缩写,即小端
assume local is `le`
Index ¶
- func BeFloat64(p []byte) (ret float64)
- func BePutUint16(out []byte, in uint16)
- func BePutUint24(out []byte, in uint32)
- func BePutUint32(out []byte, in uint32)
- func BePutUint64(out []byte, in uint64)
- func BeUint16(p []byte) uint16
- func BeUint24(p []byte) uint32
- func BeUint32(p []byte) (ret uint32)
- func BeUint64(p []byte) (ret uint64)
- func LePutUint16(out []byte, in uint16)
- func LePutUint32(out []byte, in uint32)
- func LeUint16(p []byte) (ret uint16)
- func LeUint32(p []byte) (ret uint32)
- func ReadBeUint16(r io.Reader) (uint16, error)
- func ReadBeUint24(r io.Reader) (uint32, error)
- func ReadBeUint32(r io.Reader) (uint32, error)
- func ReadBeUint64(r io.Reader) (uint64, error)
- func ReadBytes(r io.Reader, n int) ([]byte, error)
- func ReadLeUint16(r io.Reader) (uint16, error)
- func ReadLeUint32(r io.Reader) (uint32, error)
- func ReadString(r io.Reader, n int) (string, error)
- func ReadUint8(r io.Reader) (uint8, error)
- func WriteBe(writer io.Writer, in interface{}) error
- func WriteBeUint24(writer io.Writer, in uint32) error
- func WriteLe(writer io.Writer, in interface{}) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BePutUint16 ¶ added in v0.19.0
func BePutUint24 ¶ added in v0.19.0
func BePutUint32 ¶ added in v0.19.0
func BePutUint64 ¶ added in v0.19.0
func LePutUint16 ¶ added in v0.30.5
func LePutUint32 ¶ added in v0.19.0
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.