CBOR
public indirect enum CBOR : Equatable, Hashable,
ExpressibleByNilLiteral, ExpressibleByIntegerLiteral, ExpressibleByStringLiteral,
ExpressibleByArrayLiteral, ExpressibleByDictionaryLiteral, ExpressibleByBooleanLiteral,
ExpressibleByFloatLiteral
Undocumented
-
Undocumented
Declaration
Swift
case unsignedInt(UInt64) -
Undocumented
Declaration
Swift
case negativeInt(UInt64) -
Undocumented
Declaration
Swift
case byteString([UInt8]) -
Undocumented
Declaration
Swift
case utf8String(String) -
Undocumented
Declaration
Swift
case array([CBOR]) -
Undocumented
Declaration
Swift
case map([CBOR : CBOR]) -
Undocumented
Declaration
Swift
case tagged(Tag, CBOR) -
Undocumented
Declaration
Swift
case simple(UInt8) -
Undocumented
Declaration
Swift
case boolean(Bool) -
Undocumented
Declaration
Swift
case null -
Undocumented
Declaration
Swift
case undefined -
Undocumented
Declaration
Swift
case half(Float32) -
Undocumented
Declaration
Swift
case float(Float32) -
Undocumented
Declaration
Swift
case double(Float64) -
Undocumented
Declaration
Swift
case `break` -
Undocumented
Declaration
Swift
case date(Date) -
Declaration
Swift
public func hash(into hasher: inout Hasher) -
Undocumented
Declaration
Swift
public subscript(position: CBOR) -> CBOR? { get set } -
Declaration
Swift
public init(nilLiteral: ()) -
Declaration
Swift
public init(integerLiteral value: Int) -
Declaration
Swift
public init(extendedGraphemeClusterLiteral value: String) -
Declaration
Swift
public init(unicodeScalarLiteral value: String) -
Declaration
Swift
public init(stringLiteral value: String) -
Declaration
Swift
public init(arrayLiteral elements: CBOR...) -
Declaration
Swift
public init(dictionaryLiteral elements: (CBOR, CBOR)...) -
Declaration
Swift
public init(booleanLiteral value: Bool) -
Declaration
Swift
public init(floatLiteral value: Float32) -
Declaration
Swift
public static func == (lhs: CBOR, rhs: CBOR) -> Bool -
Undocumented
See moreDeclaration
Swift
public struct Tag : RawRepresentable, Equatable, Hashable
CBOR Enumeration Reference