Initializerswift 6.0.3FoundationEssentials
init(from:)
- iOS
- 17+
- macOS
- 14+
- tvOS
- 17+
- watchOS
- 10+
init(from decoder: any Decoder) throws
init(from decoder: any Decoder) throws
s20FoundationEssentials20PredicateExpressionsO8NegationVAASeRzSERzrlE4fromAEy_xGs7Decoder_p_tKcfc
What are these?3YS9G
where Wrapped:PredicateExpression, Wrapped:Encodable, Wrapped:Decodable, Wrapped.Output == Bool
import FoundationEssentials
struct Negation<Wrapped> where Wrapped : PredicateExpression, Wrapped.Output == Bool
@frozen enum PredicateExpressions
protocol Decoder
A type that can decode values from a native format into in-memory representations.
protocol PredicateExpression<Output>
protocol Encodable
A type that can encode itself to an external representation.
protocol Decodable
A type that can decode itself from an external representation.
@frozen struct Bool
A value type whose instances are either true
or false
.
func encode(to encoder: any Encoder) throws