Chain from last
An iterator adaptor that chains the iterator with an iterator built from the last item.
Example
use ChainFromLastExt;
let words: = "lorem ipsum dolor;sit;amet"
.split
.chain_from_last
.collect;
assert_eq!;
An iterator adaptor that chains the iterator with an iterator built from the last item.
use ChainFromLastExt;
let words: = "lorem ipsum dolor;sit;amet"
.split
.chain_from_last
.collect;
assert_eq!;