type SyntaxError …
func (e *SyntaxError) Error() string { … }
type SemanticError …
func (e *SemanticError) Error() string { … }
type MaxNestedLevelError …
func (e *MaxNestedLevelError) Error() string { … }
type MaxArrayElementsError …
func (e *MaxArrayElementsError) Error() string { … }
type MaxMapPairsError …
func (e *MaxMapPairsError) Error() string { … }
type IndefiniteLengthError …
func (e *IndefiniteLengthError) Error() string { … }
type TagsMdError …
func (e *TagsMdError) Error() string { … }
type ExtraneousDataError …
func (e *ExtraneousDataError) Error() string { … }
func (d *decoder) wellformed(allowExtraData bool, checkBuiltinTags bool) error { … }
func (d *decoder) wellformedInternal(depth int, checkBuiltinTags bool) (int, error) { … }
func (d *decoder) wellformedIndefiniteString(t cborType, depth int, checkBuiltinTags bool) (int, error) { … }
func (d *decoder) wellformedIndefiniteArrayOrMap(t cborType, depth int, checkBuiltinTags bool) (int, error) { … }
func (d *decoder) wellformedHeadWithIndefiniteLengthFlag() (
t cborType,
ai byte,
val uint64,
indefiniteLength bool,
err error,
) { … }
func (d *decoder) wellformedHead() (t cborType, ai byte, val uint64, err error) { … }
func (d *decoder) acceptableFloat(f float64) error { … }