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

Function Lte

comparison.go:42–44  ·  view source on GitHub ↗

Lte is a comparison that means: is less than or equal to value.

(value interface{})

Source from the content-addressed store, hash-verified

40
41// Lte is a comparison that means: is less than or equal to value.
42func Lte(value interface{}) *Comparison {
43 return &Comparison{adapter.NewComparisonOperator(adapter.ComparisonOperatorLessThanOrEqualTo, value)}
44}
45
46// Eq is a comparison that means: is equal to value.
47func Eq(value interface{}) *Comparison {

Callers 1

TestComparisonOperatorsFunction · 0.85

Calls 1

NewComparisonOperatorFunction · 0.92

Tested by 1

TestComparisonOperatorsFunction · 0.68