MCPcopy Create free account
hub / github.com/AmrDeveloper/GQL / aggregation_group_concat

Function aggregation_group_concat

crates/gitql-std/src/aggregation.rs:216–226  ·  view source on GitHub ↗
(group_values: &[Vec<Box<dyn Value>>])

Source from the content-addressed store, hash-verified

214}
215
216pub fn aggregation_group_concat(group_values: &[Vec<Box<dyn Value>>]) -> Box<dyn Value> {
217 let mut string_values: Vec<String> = vec![];
218 for row_values in group_values {
219 for value in row_values {
220 string_values.push(value.literal());
221 }
222 }
223 Box::new(TextValue {
224 value: string_values.concat(),
225 })
226}
227
228pub fn aggregation_bool_and(group_values: &[Vec<Box<dyn Value>>]) -> Box<dyn Value> {
229 for row_values in group_values {

Callers

nothing calls this directly

Calls 1

literalMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…