Inheritance: IGenerator
Beispiel #1
0
 protected virtual TResult DefaultVisitEdge(Edge x) => default;
Beispiel #2
0
 protected override object DefaultVisitEdge(Edge x) => throw new InvalidOperationException();
Beispiel #3
0
 /// <summary>Visits given edge.</summary>
 protected TResult Accept(Edge x) => (x != null) ? x.Accept(this) : default;