TimelyDataflow / timely-dataflow

A modular implementation of timely dataflow in Rust
MIT License
3.25k stars 273 forks source link

Manual Antichain::default to avoid bounds #537

Closed antiguru closed 9 months ago

antiguru commented 9 months 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 9 months ago

Looks good; thanks!