#push #arraylist #tryingarraylist

bin+lib tryingarraylist

a simple arraylist implementation

3 releases

0.1.2 Apr 1, 2024
0.1.1 Apr 1, 2024
0.1.0 Apr 1, 2024

#29 in #push

Download history 173/week @ 2024-03-26 191/week @ 2024-04-02 3/week @ 2024-04-09

367 downloads per month

MIT license

18KB
354 lines

Arraylist

a simple arraylist implementation written in rust

let x = Arraylist::new();
x.push(5);
x.push(1);
x.push(4);
x.push(3);
x.push(2);
x.sort();
println!("{:?}",x); //[1,2,3,4,5]

Dependencies

~0.4–1MB
~23K SLoC