Mercurial > pub > ImplabNet
diff Implab/Formats/ByteAlphabet.cs @ 172:92d5278d1b10 ref20160224
Working on text scanner
| author | cin |
|---|---|
| date | Mon, 14 Mar 2016 01:19:38 +0300 |
| parents | e227e78d72e4 |
| children | 0c3c69fe225b |
line wrap: on
line diff
--- a/Implab/Formats/ByteAlphabet.cs Thu Mar 10 01:19:33 2016 +0300 +++ b/Implab/Formats/ByteAlphabet.cs Mon Mar 14 01:19:38 2016 +0300 @@ -13,6 +13,10 @@ return (int)symbol; } + public override byte GetSymbolByIndex(int index) { + return (byte)index; + } + public IEnumerable<byte> InputSymbols { get { return Enumerable.Range(byte.MinValue, byte.MaxValue).Cast<byte>();
