-
Notifications
You must be signed in to change notification settings - Fork 15
/
irregex.sld
19 lines (18 loc) · 968 Bytes
/
irregex.sld
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(define-library (chibi irregex)
(export irregex string->irregex sre->irregex
string->sre maybe-string->sre
irregex? irregex-match-data?
irregex-new-matches irregex-reset-matches!
irregex-search irregex-search/matches irregex-match
irregex-search/chunked irregex-match/chunked make-irregex-chunker
irregex-match-substring irregex-match-subchunk
irregex-match-start-chunk irregex-match-start-index
irregex-match-end-chunk irregex-match-end-index
irregex-match-num-submatches irregex-match-names
irregex-match-valid-index?
irregex-fold irregex-replace irregex-replace/all
irregex-dfa irregex-dfa/search
irregex-nfa irregex-flags irregex-lengths irregex-names
irregex-num-submatches irregex-extract irregex-split)
(import (except (scheme base) vector-copy) (scheme char) (scheme cxr) (scheme write))
(include "irregex.scm"))