MCPcopy Create free account
hub / github.com/upper/db / Gte

Function Gte

comparison.go:37–39  ·  view source on GitHub ↗

Gte is a comparison that means: is greater than or equal to value.

(value interface{})

Source from the content-addressed store, hash-verified

35
36// Gte is a comparison that means: is greater than or equal to value.
37func 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.
42func Lte(value interface{}) *Comparison {

Callers 1

TestComparisonOperatorsFunction · 0.85

Calls 1

NewComparisonOperatorFunction · 0.92

Tested by 1

TestComparisonOperatorsFunction · 0.68