RosettaCodeData/Task/Search-a-list/Factor/search-a-list.factor
2023-07-01 13:44:08 -04:00

5 lines
195 B
Factor

: find-index ( seq elt -- i )
'[ _ = ] find drop [ "Not found" throw ] unless* ; inline
: find-last-index ( seq elt -- i )
'[ _ = ] find-last drop [ "Not found" throw ] unless* ; inline