1
2
3
4
5
6
7
8
9
//! # Closure
//!
//! `closure` is a collection of utilities to make performing certain
//! calculations more convenient.

pub use closures::learnClosure::Cacher;

pub mod learnClosure;
pub mod learnIterator;