MCPcopy Create free account
hub / github.com/tendermint/tendermint / String

Method String

libs/pubsub/query/syntax/parser.go:22–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

20type Query []Condition
21
22func (q Query) String() string {
23 ss := make([]string, len(q))
24 for i, cond := range q {
25 ss[i] = cond.String()
26 }
27 return strings.Join(ss, " AND ")
28}
29
30// A Condition is a single conditional expression, consisting of a tag, a
31// comparison operator, and an optional argument. The type of the argument

Callers

nothing calls this directly

Implementers 1

Querylibs/pubsub/query/query.go

Calls 1

StringMethod · 0.65

Tested by

no test coverage detected