IsEmptyString() 공개 정적인 메소드

Determines whether the given automaton accepts the empty string and nothing else.
public static IsEmptyString ( Fare.Automaton a ) : bool
a Fare.Automaton The automaton.
리턴 bool
예제 #1
0
파일: Automaton.cs 프로젝트: zvirja/Fare
 public bool IsEmptyString()
 {
     return(BasicOperations.IsEmptyString(this));
 }
예제 #2
0
 internal bool IsEmptyString()
 {
     return(BasicOperations.IsEmptyString(this));
 }