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));
 }