Editer

Editer allows mutating a collection in place while iterating over it.

Quick links

Usage

The [edit] function iterates over a given [List]. For each item in the list, it calls a given function with a [Slot]. The Slot can be used to access the current item and/or mutate the list at the current position. You can:

[try_edit] is the fallible version of edit. It applies the given editor function to each item in the given list, like edit. It stops at the first error and returns it.

```rust use editer::try_edit;

let mut items = vec![1, 2, 3, 4, 5];

let result: Result<(), &str> = try_edit(&mut items, |item| { if item == 4 { Err("Whoops!") } else { item.remove(); Ok(()) } });

asserteq!(result, Err("Whoops!")); asserteq!(items, vec![4, 5]); ```

Requirements

Editer requires Rust 1.57 or newer.

License

Editer is distributed under the terms of the MIT License. See LICENSE for details.