| Did you know ... | Search Documentation: |
| vector->for_all |
@arg1 The current element @arg2 Index of this element
Its behaviour is undefined if the size of the vector is changed by code.
Using the from and to arguments, the range
as well as the order of visited elements can be reduced. Using only from,
the vector is enumerated starting at the given index.. Using only to,
the vector is enumerated from vector<-low_index
to the given index. Using both from and to,
the vector is enumerated in the given range. If to < from
the enumeration is executed backwards.
See also vector->for_some, vector<-find
and vector<-find_all.