iter_from_closure 1.0.0

Iterator<Item = Item> from FnMut() -> Option<Item>
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented1 out of 3 items with examples
  • Size
  • Source code size: 4.51 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.44 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Centril/iter_from_closure
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Centril

iter_from_closure

Iterator<Item = Item> creation for one-time use iterators from mutable closures in the form FnMut() -> Option<Item>.

Please read the API documentation here.

crates

Usage

How to use with cargo:

[dependencies]
iter_from_closure = "1.0.0"

How to use in your crate:

extern crate iter_from_closure;

use iter_from_closure::iter_from_closure;

let mut count = 5;
let iter = iter_from_closure(|| {
    let c = count;
    count = c - 1;
    if c > 0 { Some(c) } else { None }
});

assert_eq!(vec![5, 4, 3, 2, 1], iter.collect::<Vec<_>>());

Recent Changes

  • 1.0.0 - Initial version. Unlikely to be more.

License

Dual-licensed to be compatible with the Rust project.

Licensed under the Apache License, Version 2.0 or the MIT license, at your option. This file may not be copied, modified, or distributed except according to those terms.