view Implab/Automaton/RegularExpressions/ITaggedDFABuilder.cs @ 236:302ca905c19e v2

JsonReader optimizations
author cin
date Tue, 21 Nov 2017 14:57:58 +0300
parents a0ff6a0e9c44
children
line wrap: on
line source


namespace Implab.Automaton.RegularExpressions {
    public interface ITaggedDFABuilder<TTag> : IDFATableBuilder {
        void SetStateTag(int s, TTag[] tags);
    }
}