-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve Predicate creation interface
Previously Predicates had to be created from tuples: Predicates(("key", "==", "val)) But, as you can see above the single-predicate case is weird because of the extra paranthesis. This change allows for: Predicates("key", "==", "val) That is, for the single-predicate case it accepts 3 arguments instead of a tuple.
- Loading branch information
Showing
2 changed files
with
66 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters