pelikan-io / rustcommon

Common Rust library
Apache License 2.0
26 stars 13 forks source link

feat: Add `Heatmap::iter` method #23

Closed swlynch99 closed 1 year ago

swlynch99 commented 1 year ago

&Heatmap implements IntoIterator but it does not have an iter method. This is somewhat confusing since in most cases where a type &T implements IntoIterator T also has an iter method that does the same thing. All this PR does is address this missing method.