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

Function Gt

comparison.go:57–59  ·  view source on GitHub ↗

Gt is a comparison that means: is greater than value.

(value interface{})

Source from the content-addressed store, hash-verified

55
56// Gt is a comparison that means: is greater than value.
57func Gt(value interface{}) *Comparison {
58 return &Comparison{adapter.NewComparisonOperator(adapter.ComparisonOperatorGreaterThan, value)}
59}
60
61// Lt is a comparison that means: is less than value.
62func Lt(value interface{}) *Comparison {

Callers 1

TestComparisonOperatorsFunction · 0.85

Calls 1

NewComparisonOperatorFunction · 0.92

Tested by 1

TestComparisonOperatorsFunction · 0.68