dfc963ef13fa868d5a2d83f6b82aedd20af6598a
The `LambdaCollector` was cloning nodes and wrapping them in `Rc`. However, the `registry` itself is already holding `Rc` clones of the nodes. This commit removes the redundant `Rc::new` to simplify the code. This change also addresses a performance regression observed in benchmarks due to unnecessary atomic overhead from `Arc` in the `Keyword` type.
Description
No description provided
Languages
Rust
100%