gtEq<ValType> static method
DSL to create 'is greater than or equal to' relational condition
Implementation
static Cond<ValType> gtEq<ValType>(Field<ValType> field, ValType value) =>
Cond<ValType>(field, Op.GtEq, value);