Structurefwcd.swift-utils 4.6.2Utils
AnyCodable
AnyCodable.swift:19struct AnyCodable
struct AnyCodable
import Utils
protocol CustomStringConvertible
A type with a customized textual representation.
protocol Decodable
A type that can decode itself from an external representation.
protocol Encodable
A type that can encode itself to an external representation.
protocol Equatable
A type that can be compared for value equality.
protocol Hashable : Equatable
A type that can be hashed into a Hasher
to produce an integer hash value.
init<Base>(_ base: Base) where Base : Decodable, Base : Encodable, Base : Hashable
init(from decoder: Decoder) throws
var description: String { get }
static func == (lhs: Self, rhs: Self) -> Bool
func base<T>(as: T.Type) -> T
func encode(to encoder: Encoder) throws
func hash(into hasher: inout Hasher)
static func != (lhs: Self, rhs: Self) -> Bool
Returns a Boolean value indicating whether two values are not equal.