##// END OF EJS Templates
JSON moved to Formats namespace...
JSON moved to Formats namespace Working in RegularDFA

File last commit:

r162:0526412bbb26 ref20160224
r163:419aa51b04fd ref20160224
Show More
ByteAlphabet.cs
23 lines | 553 B | text/x-csharp | CSharpLexer
using System;
namespace Implab.Automaton {
public class ByteAlphabet : IndexedAlphabetBase<byte> {
public ByteAlphabet() : base(byte.MaxValue + 1){
}
#region implemented abstract members of IndexedAlphabetBase
public override int GetSymbolIndex(byte symbol) {
return (int)symbol;
}
public override System.Collections.Generic.IEnumerable<byte> InputSymbols {
get {
throw new NotImplementedException();
}
}
#endregion
}
}