pub fn resolve_wolfram_function(name: &str) -> Option<&'static str>Expand description
Efficient function name lookup with fallback
ยงExamples
use mathhook_core::parser::constants::resolve_wolfram_function;
assert_eq!(resolve_wolfram_function("Sin"), Some("sin"));
assert_eq!(resolve_wolfram_function("UnknownFunction"), None);