Optional() 공개 정적인 메소드

Returns an automaton that accepts the union of the empty string and the language of the given automaton.
Complexity: linear in number of states.
public static Optional ( Fare.Automaton a ) : Fare.Automaton
a Fare.Automaton The automaton.
리턴 Fare.Automaton
예제 #1
0
파일: Automaton.cs 프로젝트: zvirja/Fare
 public Automaton Optional()
 {
     return(BasicOperations.Optional(this));
 }
예제 #2
0
 internal Automaton Optional()
 {
     return(BasicOperations.Optional(this));
 }