Structures
The following structures are available globally.
-
Declaration
Swift
public struct OrderedDictionary<K, V> where K : Hashable
extension OrderedDictionary: Sequence, IteratorProtocol
-
An
Error
type indicating a problem during decoding by theTypeDecoder
.This type provides additional guidance for
See moreDecodable
types that do not conform to either theValidSingleCodingValueProvider
orValidKeyedCodingValueProvider
protocols, suggesting that conformance may enable successful decoding.Declaration
Swift
public struct TypeDecodingError : Error
-
See moreTypeDecoder
allows you to decode a Swift type by usingTypeDecoder.decode()
and passing the type to be decoded.Declaration
Swift
public struct TypeDecoder