Module vecs

Source
Expand description

Functions for working with [Vec]s.

Modules§

exhaustive
Iterators that generate Vecs without repetition.

Structs§

ExhaustiveVecPermutations
Generates every permutation of a Vec.

Functions§

exhaustive_vec_permutations
Generates every permutation of a Vec.
vec_delete_left
Deletes several values from the left (beginning) of a Vec.
vec_from_str
Converts a string to an Vec<T>, where T implements FromStr.
vec_from_str_custom
Converts a string to an Vec<T>, given a function to parse a string into a T.
vec_pad_left
Inserts several copies of a value at the left (beginning) of a Vec.