Type Alias

Codable

A type that can convert itself into and out of an external representation. それ自身を外部表現へとそしてそれをもとに変換できる型。

Declaration 宣言

typealias Codable = Decodable & Encodable

Discussion 解説

Codable is a type alias for the Encodable and Decodable protocols. When you use Codable as a type or a generic constraint, it matches any type that conforms to both protocols. Codableは、EncodableDecodableプロトコルに対する型エイリアスです。あなたがCodableをある型またはある総称体制約として使う場合、それはプロトコル両方に準拠するあらゆる型に適合します。

See Also 参照

Adopting Codability