The predicate to use for determining a match.
The input range to search.
A forward range of possible choices.
seq advanced to the first matching element, or until empty if there are no matching elements.
int[] a = [ -1, 0, 1, 2, 3, 4, 5 ]; int[] b = [ 3, 1, 2 ]; assert(findAmong(a, b) == a[2 .. $]);
Searches the given range for an element that matches one of the given choices.
Advances seq by calling seq.popFront until either find!(pred)(choices, seq.front) is true, or seq becomes empty. Performs O(seq.length * choices.length) evaluations of pred.
For more information about pred see find.