Get the number of registered tools
(&self)
| 136 | |
| 137 | /// Get the number of registered tools |
| 138 | pub fn len(&self) -> usize { |
| 139 | let tools = self.tools.read().unwrap(); |
| 140 | tools.len() |
| 141 | } |
| 142 | |
| 143 | /// Check if registry is empty |
| 144 | pub fn is_empty(&self) -> bool { |
no outgoing calls