Macro maybe_grow

Source
macro_rules! maybe_grow {
    ($red_zone:expr, $stack_size:expr, $f:expr $(,)?) => { ... };
    ($stack_size:literal, $f:expr $(,)?) => { ... };
    ($f:expr $(,)?) => { ... };
}
Expand description

Grows the call stack if necessary.