gt<ValType> static method

Cond<ValType> gt<ValType>(
  1. Field<ValType> field,
  2. ValType value
)

DSL to create 'is greater than' relational condition

Implementation

static Cond<ValType> gt<ValType>(Field<ValType> field, ValType value) =>
    Cond<ValType>(field, Op.Gt, value);