TimelyDataflow / differential-dataflow

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

Remove unused `BatchContainer` methods #451

Closed frankmcsherry closed 8 months ago

frankmcsherry commented 8 months ago

This PR removes BatchContainer::{reserve, copy_slice}, which were unused. They could plausibly be re-introduced, but the majority of implementations were no-ops. The only non-trivial instance was Vec<T>'s implementation of copy_slice, but you could get the same extend_from_slice behavior from its copy_range implementation.