type cborType …
const cborTypePositiveInt …
const cborTypeNegativeInt …
const cborTypeByteString …
const cborTypeTextString …
const cborTypeArray …
const cborTypeMap …
const cborTypeTag …
const cborTypePrimitives …
func (t cborType) String() string { … }
type additionalInformation …
const maxAdditionalInformationWithoutArgument …
const additionalInformationWith1ByteArgument …
const additionalInformationWith2ByteArgument …
const additionalInformationWith4ByteArgument …
const additionalInformationWith8ByteArgument …
const additionalInformationAsFalse …
const additionalInformationAsTrue …
const additionalInformationAsNull …
const additionalInformationAsUndefined …
const additionalInformationAsFloat16 …
const additionalInformationAsFloat32 …
const additionalInformationAsFloat64 …
const additionalInformationAsIndefiniteLengthFlag …
const maxSimpleValueInAdditionalInformation …
const minSimpleValueIn1ByteArgument …
func (ai additionalInformation) isIndefiniteLength() bool { … }
const typeMask …
const additionalInformationMask …
func getType(raw byte) cborType { … }
func getAdditionalInformation(raw byte) byte { … }
func isBreakFlag(raw byte) bool { … }
func parseInitialByte(b byte) (t cborType, ai byte) { … }
const tagNumRFC3339Time …
const tagNumEpochTime …
const tagNumUnsignedBignum …
const tagNumNegativeBignum …
const tagNumExpectedLaterEncodingBase64URL …
const tagNumExpectedLaterEncodingBase64 …
const tagNumExpectedLaterEncodingBase16 …
const tagNumSelfDescribedCBOR …
const cborBreakFlag …
const cborByteStringWithIndefiniteLengthHead …
const cborTextStringWithIndefiniteLengthHead …
const cborArrayWithIndefiniteLengthHead …
const cborMapWithIndefiniteLengthHead …
var cborFalse …
var cborTrue …
var cborNil …
var cborNaN …
var cborPositiveInfinity …
var cborNegativeInfinity …
func validBuiltinTag(tagNum uint64, contentHead byte) error { … }