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

Method get_values_at_position

graphlite/src/exec/result.rs:100–105  ·  view source on GitHub ↗

Get values from all rows at a specific position (for set operations)

(&self, position: usize)

Source from the content-addressed store, hash-verified

98
99 /// Get values from all rows at a specific position (for set operations)
100 pub fn get_values_at_position(&self, position: usize) -> Vec<&Value> {
101 self.rows
102 .iter()
103 .filter_map(|row| row.get_value_at_position(position))
104 .collect()
105 }
106
107 /// Create a new result with unified variable names for set operations
108 pub fn with_unified_variables(mut self, unified_variables: Vec<String>) -> Self {

Callers

nothing calls this directly

Calls 2

get_value_at_positionMethod · 0.80
iterMethod · 0.45

Tested by

no test coverage detected