Esempio n. 1
0
 /// <summary>
 /// Parses a comparison operator that can only be used with numbers,
 /// which will return a <see cref="BooleanValue"/> when evaluated.
 /// </summary>
 private static Parser <Op> Ops() =>
 GreaterThanOrEqual
 .Or(GreaterThan)
 .Or(LessThanOrEqual)
 .Or(LessThan);