MCPcopy Create free account
hub / github.com/araddon/qlbridge / Get

Method Get

datasource/context.go:230–238  ·  view source on GitHub ↗
(key string)

Source from the content-addressed store, hash-verified

228}
229
230func (n *NestedContextReader) Get(key string) (value.Value, bool) {
231 for _, r := range n.readers {
232 val, ok := r.Get(key)
233 if ok && val != nil {
234 return val, ok
235 }
236 }
237 return nil, false
238}
239
240func (n *NestedContextReader) Row() map[string]value.Value {
241 current := make(map[string]value.Value)

Callers

nothing calls this directly

Calls 1

GetMethod · 0.65

Tested by

no test coverage detected