Array helpers for Rust. Some of the most common methods you would use on Arrays made available on Vectors. Polymorphic implementations for handling most of your use cases.
Add the following to your Cargo.toml file
[dependencies]
array_tool = "0.2.5"
And in your rust files where you plan to use it put this at the top
rust
extern crate array_tool;
And if you plan to use all of the Vector helper methods available you may do
rust
use array_tool::vec::*;
```rust
pub fn uniques
use arraytool::vec::Uniq;
fn uniq(&self, other: Vec
use arratool::vec::Shift; fn unshift(&mut self, other: T) // no return value, modifies &mut self directly // let mut x = vec![1,2,3]; // x.unshift(0); // asserteq!(x, vec![0,1,2,3]); fn shift(&mut self) -> T // let mut x = vec![0,1,2,3]; // asserteq!(x.shift(), 0); // asserteq!(x, vec![1,2,3]);
use array_tool::vec::Intersect;
fn intersect(&self, other: Vec
use array_tool::vec::Join; fn join(&self, joiner: &'static str) -> String // vec![1,2,3].join(",") // input // "1,2,3" // return value
use array_tool::vec::Times;
fn times(&self, qty: i32) -> Vec
use array_tool::vec::Union;
fn union(&self, other: Vec
I plan to implement many of the methods available for Arrays in higher languages; such as Ruby. Ideally all methods will be optimized for efficiency (most are). Expect regular updates.
Feel free to add your own methods here! And be sure to include an integration test!