estring 0.3.0

A simple way to parse a string using type annotations
Documentation
1
2
3
4
5
6
7
8
//! This module will contain aggregate functions (Sum, Product, etc)
//!

mod product;
mod sum;

pub use product::*;
pub use sum::*;