winnow-rs / winnow

Making parsing a breeze
https://docs.rs/winnow
Other
572 stars 44 forks source link

Impl Accumulate for more HashMaps #357

Closed adamchalmers closed 1 year ago

adamchalmers commented 1 year ago

Currently Accumulate is only implemented for HashMap<K, V, RandomState>.

This generalizes the Accumulate impl to HashMap<K, V, S: BuildHasher + Default>.

See #356