rewrite documentation

This commit is contained in:
2024-04-03 19:10:50 +02:00
parent 5bc8724c5d
commit 892fb1828a
2 changed files with 18 additions and 9 deletions
-5
View File
@@ -2,11 +2,6 @@
An iterator adaptor for Rust that accumulates the elements from the base iterator
using the provided closure.
This is similar to `fold()`, but instead of returning the final accumulated result, it returns an
iterator that yields the current accumulated value for each iteration. In other words, the last
element yielded by `accumulate()` is what would have been returned by `fold()` if it was used
instead.
## Example
```rust