H A D | thompson.d | 717 @trusted struct ThompsonMatcher(Char, StreamType = Input!Char) struct 722 alias OpFunc = bool function(ThompsonMatcher*, State*); argument 723 alias BackMatcher = ThompsonMatcher!(Char, BackLooper!(Stream)); argument 854 this(ref ThompsonMatcher matcher, size_t lo, size_t hi, Stream stream) in this() argument 888 auto m = ThompsonMatcher!(Char, Stream)(this, lo, hi, s); in fwdMatcher() argument 896 auto m = ThompsonMatcher!(Char, BackLooper)(this, lo, hi, s.loopBack(index)); in bwdMatcher() argument 1044 alias Ops(bool withInput) = ThompsonOps!(ThompsonMatcher, State, withInput); argument
|