annotate Implab/Formats/ByteAlphabet.cs @ 187:dd4a3590f9c6 ref20160224

Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler Any unhandled OperationCanceledException will cause the promise cancelation
author cin
date Tue, 19 Apr 2016 17:35:20 +0300
parents a0ff6a0e9c44
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
165
e227e78d72e4 DFA refactoring
cin
parents: 164
diff changeset
1 using System.Collections.Generic;
164
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
2 using System.Linq;
165
e227e78d72e4 DFA refactoring
cin
parents: 164
diff changeset
3 using Implab.Automaton;
164
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
4
165
e227e78d72e4 DFA refactoring
cin
parents: 164
diff changeset
5 namespace Implab.Formats {
164
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
6 public class ByteAlphabet : IndexedAlphabetBase<byte> {
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
7
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
8 #region implemented abstract members of IndexedAlphabetBase
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
9
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
10 public override int GetSymbolIndex(byte symbol) {
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
11 return (int)symbol;
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
12 }
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
13
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
14 public IEnumerable<byte> InputSymbols {
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
15 get {
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
16 return Enumerable.Range(byte.MinValue, byte.MaxValue).Cast<byte>();
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
17 }
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
18 }
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
19
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
20 #endregion
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
21 }
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
22 }
ec35731ae299 Almost complete DFA refactoring
cin
parents:
diff changeset
23