IsEmptyString() public static method

Determines whether the given automaton accepts the empty string and nothing else.
public static IsEmptyString ( Fare.Automaton a ) : bool
a Fare.Automaton The automaton.
return bool
Exemplo n.º 1
0
 public bool IsEmptyString()
 {
     return(BasicOperations.IsEmptyString(this));
 }
Exemplo n.º 2
0
 internal bool IsEmptyString()
 {
     return(BasicOperations.IsEmptyString(this));
 }