find-index-from ( ... n seq quot: ( ... elt i -- ... ? ) -- ... i elt )


Vocabulary
sequences

Inputs
na starting index
seqa sequence
quota quotation with stack effect ( ... elt i -- ... ? )


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


Word description
A variant of find-from where the quotation takes both an element and its index.The search starts from list index n, skipping elements up until that index.

Definition