| Did you know ... | Search Documentation: |
| vector<-find |
@arg1 The current element @arg2 Index of the element
Using from and to, the range and order can
be defined. See
vector->for_all
for details. For example, to find the last element satisfying code,
use:
find_last(Vector, Code, Element) :<-
get(Vector, high_index, End),
get(Vector, low_index, Start),
get(Vector, find, Code, End, Start, Element).
<-index <-rindex