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

Function Lt

comparison.go:62–64  ·  view source on GitHub ↗

Lt is a comparison that means: is less than value.

(value interface{})

Source from the content-addressed store, hash-verified

60
61// Lt is a comparison that means: is less than value.
62func Lt(value interface{}) *Comparison {
63 return &Comparison{adapter.NewComparisonOperator(adapter.ComparisonOperatorLessThan, value)}
64}
65
66// In is a comparison that means: is any of the values.
67func In(value ...interface{}) *Comparison {

Callers 1

TestComparisonOperatorsFunction · 0.85

Calls 1

NewComparisonOperatorFunction · 0.92

Tested by 1

TestComparisonOperatorsFunction · 0.68