pub trait Times { fn times(&self, qty: i32) -> Self; }
Expand and duplicate the vectors content times the integer given
times
use array_tool::vec::Times; vec![1,2,3].times(3);
vec![1,2,3,1,2,3,1,2,3]