Mercurial > pub > ImplabNet
view Implab/Automaton/RegularExpressions/ITaggedDFABuilder.cs @ 221:8808383fcb94 v2
fixed recursion in Safe.Dispose with IEnumerable
author | cin |
---|---|
date | Fri, 23 Jun 2017 01:03:42 +0300 |
parents | a0ff6a0e9c44 |
children |
line wrap: on
line source
namespace Implab.Automaton.RegularExpressions { public interface ITaggedDFABuilder<TTag> : IDFATableBuilder { void SetStateTag(int s, TTag[] tags); } }