Esempio n. 1
0
 public static State Nfa(this string string1)
 {
     return(Thompson.Create(string1));
 }
Esempio n. 2
0
 public static State To(this char from, char to)
 {
     return(Thompson.Create(from, to));
 }
Esempio n. 3
0
 public static State To(this int from, int to)
 {
     return(Thompson.Create((byte)from, (byte)to));
 }
Esempio n. 4
0
File: State.cs Progetto: vf1/bnf2dfa
 public static State operator +(State state1, int byte2)
 {
     return(state1 + Thompson.Create(byte2));
 }
Esempio n. 5
0
File: State.cs Progetto: vf1/bnf2dfa
 public static State operator +(int byte1, State state2)
 {
     return(Thompson.Create(byte1) + state2);
 }
Esempio n. 6
0
File: State.cs Progetto: vf1/bnf2dfa
 public static State operator +(State state1, String string2)
 {
     return(state1 + Thompson.Create(string2));
 }
Esempio n. 7
0
File: State.cs Progetto: vf1/bnf2dfa
 public static State operator +(String string1, State state2)
 {
     return(Thompson.Create(string1) + state2);
 }