RosettaCodeData/Task/Search-a-list/Factor/search-a-list.factor

6 lines
195 B
Factor
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
: 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