step ( last-match index str quot final? backwards? -- last-index/f )


Vocabulary
regexp.compiler.private

Definition
USING: kernel locals sequences.private ;

IN: regexp.compiler.private

:: step
( last-match index str quot final? backwards? -- last-index/f )
final? index last-match ? index str backwards? check [
index backwards? advance str index str nth-unsafe
quot call
] when ; inline