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
示例#1
0
文件: Automaton.cs 项目: zvirja/Fare
 public bool IsEmptyString()
 {
     return(BasicOperations.IsEmptyString(this));
 }
示例#2
0
 internal bool IsEmptyString()
 {
     return(BasicOperations.IsEmptyString(this));
 }