blob: d87425b65038e430b495e9051379280ee61a55cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
mod types;
use types::*;
fn main() {
let mut c = StrictlyAscendingCon::<u32>::new();
for x in 0..10 {
c.insert(x);
c.insert(x);
//c.first();
}
assert_eq!(c.len(), 10);
}
|