Gte is a comparison that means: is greater than or equal to value.
(value interface{})
| 35 | |
| 36 | // Gte is a comparison that means: is greater than or equal to value. |
| 37 | func Gte(value interface{}) *Comparison { |
| 38 | return &Comparison{adapter.NewComparisonOperator(adapter.ComparisonOperatorGreaterThanOrEqualTo, value)} |
| 39 | } |
| 40 | |
| 41 | // Lte is a comparison that means: is less than or equal to value. |
| 42 | func Lte(value interface{}) *Comparison { |