MCPcopy
hub / github.com/grafana/tempo / NotEquals

Method NotEquals

pkg/traceql/ast.go:868–874  ·  view source on GitHub ↗
(o *Static)

Source from the content-addressed store, hash-verified

866}
867
868func (s Static) NotEquals(o *Static) bool {
869 if s.Type == TypeNil || o.Type == TypeNil {
870 return false
871 }
872
873 return !s.Equals(o)
874}
875
876func (s Static) StrictEquals(o *Static) bool {
877 if s.Type != o.Type {

Callers 4

TestStatic_EqualsFunction · 0.80
executeMethod · 0.80
binOpExecuteScalarFunction · 0.80
binOpFunction · 0.80

Calls 1

EqualsMethod · 0.95

Tested by 1

TestStatic_EqualsFunction · 0.64