CBORValue

Represents all CBOR values.

Definition

type CBORValue =
	| CBORPositiveInteger
	| CBORNegativeInteger
	| CBORByteString
	| CBORTextString
	| CBORArray
	| CBORMap
	| CBORFloat16
	| CBORFloat32
	| CBORFloat64
	| CBORTagged
	| CBORSimple
	| CBORBreak;