var intDigits …
const uint32SafeToMultiply10 …
const uint64SafeToMultiple10 …
const maxFloat64 …
func init() { … }
func (iter *Iterator) ReadUint() uint { … }
func (iter *Iterator) ReadInt() int { … }
func (iter *Iterator) ReadInt8() (ret int8) { … }
func (iter *Iterator) ReadUint8() (ret uint8) { … }
func (iter *Iterator) ReadInt16() (ret int16) { … }
func (iter *Iterator) ReadUint16() (ret uint16) { … }
func (iter *Iterator) ReadInt32() (ret int32) { … }
func (iter *Iterator) ReadUint32() (ret uint32) { … }
func (iter *Iterator) readUint32(c byte) (ret uint32) { … }
func (iter *Iterator) ReadInt64() (ret int64) { … }
func (iter *Iterator) ReadUint64() uint64 { … }
func (iter *Iterator) readUint64(c byte) (ret uint64) { … }
func (iter *Iterator) assertInteger() { … }