Skip to main content

safe_f

Macro safe_f 

Source
macro_rules! safe_f {
    ($(
        $(#[$attr:meta])*
        pub $(const $($const_dummy:literal)?)? safe
        fn $i:ident ($($arg:ident: $argty:ty),* $(,)?) -> $ret:ty
            $body:block
    )+) => { ... };
}
Expand description

Define a safe function.