func decode(Float.Type) throws -> Float
Decodes a value of the given type.
func decode(UInt16.Type) throws -> UInt16
Decodes a value of the given type.
func decode(Int.Type) throws -> Int
Decodes a value of the given type.
func decode(Int8.Type) throws -> Int8
Decodes a value of the given type.
func decode<T>(T.Type) throws -> T
Decodes a value of the given type.
func decode(Int32.Type) throws -> Int32
Decodes a value of the given type.
func decode(UInt64.Type) throws -> UInt64
Decodes a value of the given type.
func decode(UInt8.Type) throws -> UInt8
Decodes a value of the given type.
func decode(Int16.Type) throws -> Int16
Decodes a value of the given type.
func decode(UInt.Type) throws -> UInt
Decodes a value of the given type.
func decode(Bool.Type) throws -> Bool
Decodes a value of the given type.
func decode(Double.Type) throws -> Double
Decodes a value of the given type.
func decode(String.Type) throws -> String
Decodes a value of the given type.
func decode(UInt32.Type) throws -> UInt32
Decodes a value of the given type.
func decode(Int64.Type) throws -> Int64
Decodes a value of the given type.
func decodeIfPresent(Bool.Type) throws -> Bool?
Decodes a value of the given type, if present.
func decodeIfPresent(UInt.Type) throws -> UInt?
Decodes a value of the given type, if present.
func decodeIfPresent(UInt16.Type) throws -> UInt16?
Decodes a value of the given type, if present.
func decodeIfPresent(String.Type) throws -> String?
Decodes a value of the given type, if present.
func decodeIfPresent(UInt32.Type) throws -> UInt32?
Decodes a value of the given type, if present.
func decodeIfPresent(Int32.Type) throws -> Int32?
Decodes a value of the given type, if present.
func decodeIfPresent(Int8.Type) throws -> Int8?
Decodes a value of the given type, if present.
func decodeIfPresent(Float.Type) throws -> Float?
Decodes a value of the given type, if present.
func decodeIfPresent(UInt8.Type) throws -> UInt8?
Decodes a value of the given type, if present.
func decodeIfPresent<T>(T.Type) throws -> T?
Decodes a value of the given type, if present.
func decodeIfPresent(Double.Type) throws -> Double?
Decodes a value of the given type, if present.
func decodeIfPresent(Int16.Type) throws -> Int16?
Decodes a value of the given type, if present.
func decodeIfPresent(Int64.Type) throws -> Int64?
Decodes a value of the given type, if present.
func decodeIfPresent(Int.Type) throws -> Int?
Decodes a value of the given type, if present.
func decodeIfPresent(UInt64.Type) throws -> UInt64?
Decodes a value of the given type, if present.
func decodeNil() throws -> Bool
Decodes a null value.
func nestedContainer<NestedKey>(keyedBy: NestedKey.Type) throws -> KeyedDecodingContainer<NestedKey>
Decodes a nested container keyed by the given type.
func nestedUnkeyedContainer() throws -> UnkeyedDecodingContainer
Decodes an unkeyed nested container.
func superDecoder() throws -> Decoder
Decodes a nested container and returns a Decoder
instance for decoding super
from that container.