1 2 3 4 5 6 7 8 9
#[macro_export] macro_rules! register_functions { ( $($fn:path),+ $(,)? ) => {{ use std::sync::Arc; $( $crate::function_registry::register_function(Arc::new($fn)); )+ }}; }