Mercurial > pub > ImplabNet
annotate Implab/Formats/CharAlphabet.cs @ 223:27ea7f07e2e4 default
Слияние
author | cin |
---|---|
date | Tue, 22 Aug 2017 09:35:54 +0300 |
parents | a0ff6a0e9c44 |
children | 6fa235c5a760 |
rev | line source |
---|---|
165 | 1 using System.Collections.Generic; |
164 | 2 using System.Linq; |
165 | 3 using Implab.Automaton; |
164 | 4 |
165 | 5 namespace Implab.Formats { |
164 | 6 public class CharAlphabet: IndexedAlphabetBase<char> { |
7 | |
8 public override int GetSymbolIndex(char symbol) { | |
9 return symbol; | |
10 } | |
11 | |
176 | 12 public IEnumerable<char> InputSymbols { |
164 | 13 get { return Enumerable.Range(char.MinValue, char.MaxValue).Cast<char>(); } |
14 } | |
15 } | |
16 } |