moved collections from libextra into libcollections
This commit is contained in:
parent
87fe3ccf09
commit
d81bb441da
36 changed files with 117 additions and 72 deletions
|
|
@ -9,9 +9,10 @@
|
|||
// except according to those terms.
|
||||
|
||||
extern mod extra;
|
||||
extern mod collections;
|
||||
|
||||
use extra::time;
|
||||
use extra::treemap::TreeMap;
|
||||
use collections::TreeMap;
|
||||
use std::hashmap::{HashMap, HashSet};
|
||||
use std::os;
|
||||
use std::rand::{Rng, IsaacRng, SeedableRng};
|
||||
|
|
|
|||
|
|
@ -11,9 +11,10 @@
|
|||
// except according to those terms.
|
||||
|
||||
extern mod extra;
|
||||
extern mod collections;
|
||||
|
||||
use extra::bitv::BitvSet;
|
||||
use extra::treemap::TreeSet;
|
||||
use collections::bitv::BitvSet;
|
||||
use collections::TreeSet;
|
||||
use std::hashmap::HashSet;
|
||||
use std::os;
|
||||
use std::rand;
|
||||
|
|
|
|||
|
|
@ -11,8 +11,9 @@
|
|||
// Microbenchmark for the smallintmap library
|
||||
|
||||
extern mod extra;
|
||||
extern mod collections;
|
||||
|
||||
use extra::smallintmap::SmallIntMap;
|
||||
use collections::SmallIntMap;
|
||||
use std::os;
|
||||
use std::uint;
|
||||
|
||||
|
|
|
|||
|
|
@ -11,8 +11,9 @@
|
|||
#[feature(managed_boxes)];
|
||||
|
||||
extern mod extra;
|
||||
extern mod collections;
|
||||
|
||||
use extra::list::{List, Cons, Nil};
|
||||
use collections::list::{List, Cons, Nil};
|
||||
use extra::time::precise_time_s;
|
||||
use std::os;
|
||||
use std::task;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue