annotate Implab/Formats/CharAlphabet.cs @ 205:8200ab154c8a
v2
Added ResetState to RunnableComponent to reset in case of failure
Added StateChanged event to IRunnable
Renamed Promise.SUCCESS -> Promise.Success
Added Promise.FromException
Renamed Bundle -> PromiseAll in PromiseExtensions
author |
cin |
date |
Tue, 25 Oct 2016 17:40:33 +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 }
|