rust-cv / space

Spatial library for Rust
MIT License
39 stars 4 forks source link

Refactor iteration and folding #20

Closed vadixidav closed 5 years ago

vadixidav commented 6 years ago

Every single iterator and fold implementation has shared concepts but different code. In the name of DRY, this will be solved. The end result should be a code base with no code duplication.

vadixidav commented 5 years ago

Done. Several old things were renamed or removed and now all the code is consolidated to use one iterator called FoldIter that supports everything simultaneously.