ValidatingUnkeyedContainer
private struct ValidatingUnkeyedContainer : UnkeyedDecodingContainer
-
Declaration
Swift
var wrappedContainer: UnkeyedDecodingContainer
-
Declaration
Swift
var codingPath: [CodingKey] { get }
-
Declaration
Swift
var count: Int? { get }
-
Declaration
Swift
var currentIndex: Int { get }
-
Declaration
Swift
var isAtEnd: Bool { get }
-
Declaration
Swift
init(wrapping: UnkeyedDecodingContainer)
-
Declaration
Swift
mutating func decode<T>(_ type: T.Type) throws -> T where T : Decodable
-
Declaration
Swift
func decodeNil() -> Bool
-
Declaration
Swift
mutating func nestedContainer<NestedKey>(keyedBy type: NestedKey.Type) throws -> KeyedDecodingContainer< NestedKey > where NestedKey: CodingKey
-
Declaration
Swift
mutating func nestedUnkeyedContainer() throws -> UnkeyedDecodingContainer
-
Declaration
Swift
mutating func superDecoder() throws -> Decoder