Get a function by name
(&self, name: &str)
| 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) |
no outgoing calls
no test coverage detected