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

Function print_set_operation

graphlite/src/ast/pretty_printer.rs:243–249  ·  view source on GitHub ↗
(set_op: &SetOperation, indent: usize)

Source from the content-addressed store, hash-verified

241}
242
243fn print_set_operation(set_op: &SetOperation, indent: usize) {
244 debug!("{}{:?}", get_indent(indent), set_op.operation);
245 debug!("{}Left Query:", get_indent(indent));
246 print_query(&set_op.left, indent + 1);
247 debug!("{}Right Query:", get_indent(indent));
248 print_query(&set_op.right, indent + 1);
249}
250
251fn print_call_statement(call_stmt: &CallStatement, indent: usize) {
252 debug!(

Callers 1

print_queryFunction · 0.85

Calls 1

print_queryFunction · 0.85

Tested by

no test coverage detected