Mercurial > pub > ImplabNet
comparison Implab/Formats/ByteAlphabet.cs @ 190:1c2a16d071a7 v2
Слияние с ref20160224
author | cin |
---|---|
date | Fri, 22 Apr 2016 13:08:08 +0300 |
parents | a0ff6a0e9c44 |
children |
comparison
equal
deleted
inserted
replaced
161:2a8466f0cb8a | 190:1c2a16d071a7 |
---|---|
1 using System.Collections.Generic; | |
2 using System.Linq; | |
3 using Implab.Automaton; | |
4 | |
5 namespace Implab.Formats { | |
6 public class ByteAlphabet : IndexedAlphabetBase<byte> { | |
7 | |
8 #region implemented abstract members of IndexedAlphabetBase | |
9 | |
10 public override int GetSymbolIndex(byte symbol) { | |
11 return (int)symbol; | |
12 } | |
13 | |
14 public IEnumerable<byte> InputSymbols { | |
15 get { | |
16 return Enumerable.Range(byte.MinValue, byte.MaxValue).Cast<byte>(); | |
17 } | |
18 } | |
19 | |
20 #endregion | |
21 } | |
22 } | |
23 |