MCPcopy Create free account
hub / github.com/brimdata/super / Walk

Method Walk

value.go:315–317  ·  view source on GitHub ↗

Walk traverses a value in depth-first order, calling a Visitor on the way.

(rv Visitor)

Source from the content-addressed store, hash-verified

313// Walk traverses a value in depth-first order, calling a
314// Visitor on the way.
315func (r Value) Walk(rv Visitor) error {
316 return Walk(r.Type(), r.Bytes(), rv)
317}
318
319func (r Value) nth(n int) (scode.Bytes, bool, bool) {
320 if typ := TypeRecordOf(r.typ); typ != nil {

Callers 11

ValidateMethod · 0.95
findZTestsFunction · 0.80
searchForSuperSQLFunction · 0.80
EvalMethod · 0.80
EvalMethod · 0.80
EvalMethod · 0.80
EvalMethod · 0.80
ContainsFunction · 0.80
EvalMethod · 0.80
CallMethod · 0.80
parseMarkdownFunction · 0.80

Calls 3

TypeMethod · 0.95
BytesMethod · 0.95
WalkFunction · 0.70

Tested by 2

findZTestsFunction · 0.64
searchForSuperSQLFunction · 0.64