cum 0.2.0

Cumulative operation helper functions
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod tests {
    use cum;
    
    #[test]
    fn test_sum() {
        let arr1: Vec<String> = vec![String::from("hey guys!"), String::from("hey everyone!"), String::from("hello my friends, guys!")];
        cum::overlap(arr1);

        assert!(true);
    }
}