MCPcopy Index your code
hub / github.com/douglance/devsql / execute_on_array

Method execute_on_array

crates/ccql/src/query/mod.rs:180–183  ·  view source on GitHub ↗
(&self, query: &str, inputs: Vec<Value>)

Source from the content-addressed store, hash-verified

178 }
179
180 pub fn execute_on_array(&self, query: &str, inputs: Vec<Value>) -> Result<Vec<Value>> {
181 let array = Value::Array(inputs);
182 self.execute(query, array)
183 }
184
185 pub fn execute_per_item(&self, query: &str, inputs: Vec<Value>) -> Result<Vec<Value>> {
186 let mut results = Vec::new();

Callers 1

queryFunction · 0.80

Calls 1

executeMethod · 0.45

Tested by

no test coverage detected