find-last ( ... seq quot: ( ... elt -- ... ? ) -- ... i elt )
Factor handbook » The language » Collections » Sequence operations » Searching sequences

Prev:find-from ( ... n seq quot: ( ... elt -- ... ? ) -- ... i elt )
Next:find-last-from ( ... n seq quot: ( ... elt -- ... ? ) -- ... i elt )


Vocabulary
sequences

Inputs
seqa sequence
quota quotation with stack effect ( ... elt -- ... ? )


Outputs
ithe index of the first match or f
eltthe first matching element or f


Word description
A simpler variant of find-last-from where the starting index is one less than the length of the sequence.

See also
find, find-from, find-last-from, search

Definition


: find-last
( ... seq quot: ( ... elt -- ... ? ) -- ... i elt )
[ index-of-last ] dip find-last-from ; inline