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
toml
[dependencies]
array_tool = "1.0.0"
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::*;
This crate has helpful methods for strings as well.
```rust
pub fn uniques
use arraytool::vec::Uniq;
fn uniq(&self, other: Vec
use arraytool::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) -> Option
use arraytool::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
``rust
use array_tool::string::ToGraphemeBytesIter;
fn grapheme_bytes_iter(&'a self) -> GraphemeBytesIter<'a>;
// let string = "a s—d féZ";
// let mut graphemes = string.grapheme_bytes_iter()
// graphemes.skip(3).next(); // input
// [226, 128, 148] // return value for emdash
—`
use array_tool::string::Squeeze; fn squeeze(&self, targets: &'static str) -> String; // "yellow moon".squeeze("") // input // "yelow mon" // return value // " now is the".squeeze(" ") // input // " now is the" // return value
use arraytool::string::Justify; fn justifyline(&self, width: usize) -> String; // "asd as df asd".justifyline(16) // input // "asd as df asd" // return value // "asd as df asd".justifyline(18) // input // "asd as df asd" // return value
use arraytool::string::SubstMarks;
fn substmarks(&self, marks: Vec
use arraytool::string::WordWrap; fn wordwrap(&self, width: usize) -> String; // "01234 67 9 BC EFG IJ".word_wrap(6) // input // "01234\n67 9\nBC\nEFG IJ" // return value
use arraytool::string::AfterWhitespace;
fn seekendofwhitespace(&self, offset: usize) -> Option
```
Expect methods to become more polymorphic over time (same method implemented for similar & compatible types). I plan to implement many of the methods available for Arrays in higher languages; such as Ruby. Expect regular updates.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.