practo 0.1.0

Basic math operations
Documentation
1
2
3
4
5
6
7
8
use array_tool::vec::*;
fn main() {
    let vec_1 = vec![2, 3, 4, 5, 4, 7, 8, 9];
    let vec_2 = vec![8, 5, 6, 9, 3, 2, 1, 2, 0];

    let intersection = vec_1.intersect(vec_2);
    println!("The intersection = {:?}", intersection);
}