hvm-core 0.2.26

HVM-Core is a massively parallel Interaction Combinator evaluator.
1
2
3
4
/// Guard against stack overflows in recursive functions.
pub(crate) fn maybe_grow<R>(f: impl FnOnce() -> R) -> R {
  stacker::maybe_grow(1024 * 32, 1024 * 1024, f)
}