Follow-up cleanup from PR #246:
nll.rs has a clone-heavy pattern for building an immutable stack:
let stack = { let mut s = stack.clone(); s.push(this_entry.clone()); s }
This could be made more readable, possibly with a helper or a different data structure.
See: #246 (comment)
Follow-up cleanup from PR #246:
nll.rshas a clone-heavy pattern for building an immutable stack:This could be made more readable, possibly with a helper or a different data structure.
See: #246 (comment)