Instance Methodswift 6.0.3FoundationEssentials
evaluate(_:)
- iOS
- 17+
- macOS
- 14+
- tvOS
- 17+
- watchOS
- 10+
func evaluate(_ bindings: PredicateBindings) throws -> Bool
func evaluate(_ bindings: PredicateBindings) throws -> Bool
s20FoundationEssentials20PredicateExpressionsO018CollectionContainsE0V8evaluateySbAA0C8BindingsVKF
What are these?5CTZK
import FoundationEssentials
struct CollectionContainsCollection<Base, Other> where Base : PredicateExpression, Other : PredicateExpression, Base.Output : Collection, Other.Output : Collection, Base.Output.Element : Equatable, Base.Output.Element == Other.Output.Element
@frozen enum PredicateExpressions
struct PredicateBindings
@frozen struct Bool
A value type whose instances are either true
or false
.
init(base: Base, other: Other)
let base: Base
let other: Other
typealias Output = Bool