encode(contentsOf:)
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Int32
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Int32
ss24UnkeyedEncodingContainerPsE6encode10contentsOfyqd___tKSTRd__s5Int32V7ElementRtd__lF
What are these?59L2F
import Swift
protocol UnkeyedEncodingContainer
A type that provides a view into an encoder’s storage and is used to hold the encoded properties of an encodable type sequentially, without keys.
protocol Sequence<Element>
A type that provides sequential, iterated access to its elements.
associatedtype Element where Self.Element == Self.Iterator.Element
A type representing the sequence’s elements.
@frozen struct Int32
A 32-bit signed integer value type.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element : Encodable
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == String
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Bool
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Double
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Float
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Int
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == UInt
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Int8
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Int16
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Int32
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Int64
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == UInt8
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Int128
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == UInt16
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == UInt32
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == UInt64
Encodes the elements of the given sequence.
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == UInt128
Encodes the elements of the given sequence.
mutating func encode(_ value: Int128) throws
mutating func encode(_ value: UInt128) throws
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element : Encodable
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == String
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Bool
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Double
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Float
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Int
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == UInt
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Int8
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Int16
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Int64
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == UInt8
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == Int128
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == UInt16
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == UInt32
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == UInt64
mutating func encode<T>(contentsOf sequence: T) throws where T : Sequence, T.Element == UInt128
mutating func encodeConditional<T>(_ object: T) throws where T : AnyObject, T : Encodable