Crate array_tool [] [src]

Array Tool

is a collection of powerful methods for working with collections. Some of the most common methods you would use on Arrays made available on Vectors. Polymorphic implementations for handling most of your use cases.

In your rust files where you plan to use it put this at the top

extern crate array_tool;

And if you plan to use all of the Vector helper methods available:

use array_tool::vec::*;

This crate is not limited to just Vector methods and has some helpful string methods as well.

Modules

string

A string is a collection so we should have more methods for handling strings.

vec

Array Tool provides many useful methods for vectors

Functions

uniques

Get uniques from two vectors