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

Function NotIn

comparison.go:77–79  ·  view source on GitHub ↗

NotIn is a comparison that means: is none of the values.

(value ...interface{})

Source from the content-addressed store, hash-verified

75
76// NotIn is a comparison that means: is none of the values.
77func NotIn(value ...interface{}) *Comparison {
78 return &Comparison{adapter.NewComparisonOperator(adapter.ComparisonOperatorNotIn, toInterfaceArray(value))}
79}
80
81// NotAnyOf is a comparison that means: is none of the values of the slice.
82func NotAnyOf(value interface{}) *Comparison {

Callers

nothing calls this directly

Calls 2

NewComparisonOperatorFunction · 0.92
toInterfaceArrayFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…