]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/rosetta-code/text-processing/max-licenses/max-licenses.factor
core: subseq-index? -> subseq-of?
[factor.git] / extra / rosetta-code / text-processing / max-licenses / max-licenses.factor
index 4bf895ccbaae11281b71416b70156cd0cabb3cc6..9c931179570be5c8c4930ca6a319fa0e3af78bc1 100644 (file)
@@ -32,7 +32,7 @@ TUPLE: maxlicense max-count current-count times ;
 
 : <maxlicense> ( -- max ) -1 0 V{ } clone \ maxlicense boa ; inline
 
-: out? ( line -- ? ) "OUT" subseq-index? ; inline
+: out? ( line -- ? ) "OUT" subseq-of? ; inline
 
 : line-time ( line -- time ) split-words harvest fourth ; inline