-
Notifications
You must be signed in to change notification settings - Fork 42
Pointer Query Operations
Malcolm Groves edited this page Jan 10, 2014
·
4 revisions
FluentQuery supports the following operations when querying pointers from a container (eg, a TList, or a TList<Pointer>):
Operation | Bound | Unbound | Terminating | Description |
---|---|---|---|---|
First | Yes | Yes | Enumerate the first pointer, ignoring the remainder. | |
From | Yes | From allows you to specify the source of the data you are querying. It is also From which transforms an Unbound Query into a Bound Query. | ||
IsAssigned | Yes | Yes | Enumerates non-nil pointers. | |
Predicate | Yes | Yes | Returns a TPredicate<Pointer> encapsulating the supplied Unbound Query logic. | |
Skip | Yes | Yes | Skip will bypass the specified number of pointers from the start of the enumeration, after which it will enumerate the remaining pointers as normal. | |
SkipWhile(Predicate) | Yes | Yes | SkipWhile will bypass pointers at the start of the enumeration while the supplied Predicate evaluates True. Once the Predicate evaluates false, all remaining pointers will be enumerated as normal. | |
SkipWhile(UnboundQuery) | Yes | Yes | SkipWhile will bypass pointers at the start of the enumeration that match the supplied Unbound Query. Once a pointer does not match the supplied query, all remaining pointers will be enumerated as normal. | |
Take | Yes | Yes | Take will enumerate up to the specified number of pointers, then ignore the remainder. | |
TakeWhile(Predicate) | Yes | Yes | TakeWhile will continue enumerating pointers while the supplied Predicate evaluates True, after which it will ignore the remaining pointers. | |
TakeWhile(UnboundQuery) | Yes | Yes | TakeWhile will continue enumerating pointers while they match the supplied Unbound Query, after which it will ignore the remaining pointers. | |
Where | Yes | Yes | Filter the pointers enumerated to only those that evaluate true when passed into the supplied Predicate | |
WhereNot(Predicate) | Yes | Yes | Filter the pointers enumerated to only those that evaluate false when passed into the supplied Predicate | |
WhereNot(UnboundQuery) | Yes | Yes | Filter the pointers enumerated to only those that do not match the supplied Unbound Query |