Operation
public enum Operation<K, V>
specifies the filter operation with the possible options of less equal (.lte
), greater equal (.gte
) and equal (.exists
)
-
specifies less equal as element comparisation
Declaration
Swift
case lte(WritableKeyPath<K, V>, V)
-
specifies greater equal as element comparisation
Declaration
Swift
case gte(WritableKeyPath<K, V>, V)
-
specifies equal as element comparisation
Declaration
Swift
case exists(WritableKeyPath<K, V>, V)