public static IFluentPathValue GreaterThan(this IFluentPathValue left, IFluentPathValue right)
 {
     return(new TypedValue(left.compare(InfixOperator.GreaterThan, right)));
 }
 public static IFluentPathValue LessOrEqual(this IFluentPathValue left, IFluentPathValue right)
 {
     return(new TypedValue(left.IsEqualTo(right) || left.compare(InfixOperator.LessThan, right)));
 }