TimelyDataflow / timely-dataflow

A modular implementation of timely dataflow in Rust
MIT License
3.31k stars 272 forks source link

Manual Antichain::default to avoid bounds #537

Closed antiguru closed 1 year ago

antiguru commented 1 year ago

The derived default for Antichain includes a bound T: Default, which is unnecessary. This change replaces the derived implementation with a custom one that does not have the constrain.

frankmcsherry commented 1 year ago

Looks good; thanks!