Instance Methodswift 6.0.3FoundationEssentials
encode(to:)
- iOS
- 17+
- macOS
- 14+
- tvOS
- 17+
- watchOS
- 10+
func encode(to encoder: any Encoder) throws
func encode(to encoder: any Encoder) throws
s20FoundationEssentials20PredicateExpressionsO8NotEqualVAASeRzSERzSeR_SER_rlE6encode2toys7Encoder_p_tKF
What are these?6SNZ3
where LHS:PredicateExpression, LHS:Encodable, LHS:Decodable, LHS.Output:Equatable, LHS.Output == RHS.Output, RHS:PredicateExpression, RHS:Encodable, RHS:Decodable
import FoundationEssentials
struct NotEqual<LHS, RHS> where LHS : PredicateExpression, RHS : PredicateExpression, LHS.Output : Equatable, LHS.Output == RHS.Output
@frozen enum PredicateExpressions
protocol Encoder
A type that can encode values into a native format for external representation.
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.
protocol Equatable
A type that can be compared for value equality.
init(from decoder: any Decoder) throws