Mercurial > pub > ImplabNet
view Implab/Automaton/RegularExpressions/ITaggedDFABuilder.cs @ 233:d6fe09f5592c v2
Improved AsyncQueue
Removed ImplabFx
author | cin |
---|---|
date | Wed, 04 Oct 2017 15:44:47 +0300 |
parents | a0ff6a0e9c44 |
children |
line wrap: on
line source
namespace Implab.Automaton.RegularExpressions { public interface ITaggedDFABuilder<TTag> : IDFATableBuilder { void SetStateTag(int s, TTag[] tags); } }