chain_from_last 0.1.0

Iterator adaptor for chaining from last item.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Chain from last
An iterator adaptor that chains the iterator with an iterator built from the last item.

## Example
```rust
fn it_works(){
    let words: Vec<_> = "lorem ipsum dolor;sit;amet"
        .split(" ")
        .chain_from_last(|l| l.split(";"))
        .collect();

    assert_eq!(words, vec!["lorem", "ipsum", "dolor", "sit", "amet"]);
}
```