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

Method get

graphlite/src/functions/mod.rs:268–270  ·  view source on GitHub ↗

Get a function by name

(&self, name: &str)

Source from the content-addressed store, hash-verified

266
267 /// Get a function by name
268 pub fn get(&self, name: &str) -> Option<&dyn Function> {
269 self.functions.get(&name.to_uppercase()).map(|f| f.as_ref())
270 }
271
272 /// Check if a function exists
273 #[allow(dead_code)] // ROADMAP v0.5.0 - Function registry introspection (see ROADMAP.md §8)

Callers 15

get_variable_typeMethod · 0.45
infer_function_typeMethod · 0.45
redo_phaseMethod · 0.45
undo_phaseMethod · 0.45
get_transaction_stateMethod · 0.45
commit_transactionMethod · 0.45
rollback_transactionMethod · 0.45
get_transactionMethod · 0.45
log_operationMethod · 0.45
get_variableMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected