(f: F)
| 101 | /// is still preferable to panicking. |
| 102 | #[inline(always)] |
| 103 | pub fn maybe_grow<F, R>(f: F) -> R |
| 104 | where |
| 105 | F: FnOnce() -> R, |
| 106 | { |
| 107 | stacker::maybe_grow(STACK_RED_ZONE, STACK_SIZE, f) |
| 108 | } |
| 109 | |
| 110 | /// A trait for types which support bounded recursion to prevent stack overflow. |
| 111 | /// |
no outgoing calls
no test coverage detected