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

Function print_property_map

graphlite/src/ast/pretty_printer.rs:369–374  ·  view source on GitHub ↗
(prop_map: &PropertyMap, indent: usize)

Source from the content-addressed store, hash-verified

367}
368
369fn print_property_map(prop_map: &PropertyMap, indent: usize) {
370 for property in &prop_map.properties {
371 debug!("{}Property: {}", get_indent(indent), property.key);
372 print_expression(&property.value, indent + 1);
373 }
374}
375
376fn print_where_clause(where_clause: &WhereClause, indent: usize) {
377 debug!("{}Condition", get_indent(indent));

Callers 2

print_nodeFunction · 0.85
print_edgeFunction · 0.85

Calls 1

print_expressionFunction · 0.85

Tested by

no test coverage detected