highdash 0.0.1

A lodash alternative for Rust. Great package for people coming from Javascript
Documentation
// Author: @himanshurajora
// These modules contains functions related to arrays and vectors

mod map;
pub use map::map;

mod filter;
pub use filter::filter;

mod every;
pub use every::every;

mod some;
pub use some::some;

mod head;
pub use head::head;

mod first;
pub use first::first;