rust-cv / space

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

Change names of methods that begin with `iter` but don't produce iterators #11

Closed vadixidav closed 5 years ago

vadixidav commented 6 years ago

Some methods, like iter_gather_deep_linear_hashed, do iterate, but they don't produce an iterator. The names need to be changed to something more appropriate like collect.

vadixidav commented 5 years ago

Solved in #20. Now called collect_fold.