Beispiel #1
0
 public PostfixStack AddOperation(Operation operation) =>
 new PostfixStack(this.items.Append(EquationItem.Operation(operation)));
Beispiel #2
0
 public PostfixStack AddValue(int value) =>
 new PostfixStack(this.items.Append(EquationItem.Value(value)));