RosettaCodeData/Task/Search-a-list/Factor/search-a-list.factor
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07: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