Check if a method is registered (regardless of signature).
| 284 | |
| 285 | /// Check if a method is registered (regardless of signature). |
| 286 | bool has(const char* name) const { |
| 287 | return mRegistry.find(fl::string(name)) != mRegistry.end(); |
| 288 | } |
| 289 | |
| 290 | /// Unbind (unregister) a previously registered method. |
| 291 | /// Returns true if method was found and removed, false otherwise. |