MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / get_value

Method get_value

graphlite/src/exec/result.rs:233–235  ·  view source on GitHub ↗

Get a value by variable name

(&self, name: &str)

Source from the content-addressed store, hash-verified

231
232 /// Get a value by variable name
233 pub fn get_value(&self, name: &str) -> Option<&Value> {
234 self.values.get(name)
235 }
236
237 /// Get a value by position (for set operations)
238 pub fn get_value_at_position(&self, position: usize) -> Option<&Value> {

Callers 11

format_tableMethod · 0.80
format_csvMethod · 0.80
executeMethod · 0.80
scalarMethod · 0.80
mainFunction · 0.80
mainFunction · 0.80

Calls 1

getMethod · 0.45