TimelyDataflow / differential-dataflow

An implementation of differential dataflow using timely dataflow on Rust.
MIT License
2.54k stars 183 forks source link

Remove push_unchecked #413

Closed antiguru closed 10 months ago

antiguru commented 10 months ago

On recent Rust compilers, it produces the same assembly as Vec::push, so there is no benefit in keeping the function around, besides that it avoids occasionally nerd-sniping people in trying to understand Rust's UB and how to write the function correctly.