|
13 | 13 | /* Reexported core operators */
|
14 | 14 |
|
15 | 15 | pub use kinds::{Const, Copy, Owned, Durable};
|
16 |
| -pub use ops::{Drop}; |
17 | 16 | pub use ops::{Add, Sub, Mul, Div, Modulo, Neg, Not};
|
18 | 17 | pub use ops::{BitAnd, BitOr, BitXor};
|
| 18 | +pub use ops::{Drop}; |
19 | 19 | pub use ops::{Shl, Shr, Index};
|
20 | 20 | pub use option::{Option, Some, None};
|
21 | 21 | pub use result::{Result, Ok, Err};
|
22 | 22 |
|
23 | 23 | /* Reexported types and traits */
|
24 | 24 |
|
25 |
| -pub use path::Path; |
| 25 | +pub use clone::Clone; |
| 26 | +pub use cmp::{Eq, Ord}; |
| 27 | +pub use container::{Container, Mutable, Map, Set}; |
| 28 | +pub use hash::Hash; |
| 29 | +pub use iter::{BaseIter, ExtendedIter, EqIter, CopyableIter}; |
| 30 | +pub use iter::{CopyableOrderedIter, CopyableNonstrictIter, Times}; |
| 31 | +pub use num::Num; |
26 | 32 | pub use path::GenericPath;
|
27 |
| -pub use path::WindowsPath; |
| 33 | +pub use path::Path; |
28 | 34 | pub use path::PosixPath;
|
29 |
| - |
30 |
| -pub use tuple::{CopyableTuple, ImmutableTuple, ExtendedTupleOps}; |
| 35 | +pub use path::WindowsPath; |
| 36 | +pub use pipes::{GenericChan, GenericPort}; |
| 37 | +pub use ptr::Ptr; |
31 | 38 | pub use str::{StrSlice, Trimmable};
|
32 |
| -pub use container::{Container, Mutable}; |
| 39 | +pub use to_bytes::IterBytes; |
| 40 | +pub use to_str::ToStr; |
| 41 | +pub use tuple::{CopyableTuple, ImmutableTuple, ExtendedTupleOps}; |
33 | 42 | pub use vec::{CopyableVector, ImmutableVector};
|
34 | 43 | pub use vec::{ImmutableEqVector, ImmutableCopyableVector};
|
35 | 44 | pub use vec::{OwnedVector, OwnedCopyableVector};
|
36 |
| -pub use iter::{BaseIter, ExtendedIter, EqIter, CopyableIter}; |
37 |
| -pub use iter::{CopyableOrderedIter, CopyableNonstrictIter, Times}; |
38 |
| -pub use container::{Container, Mutable, Map, Set}; |
39 |
| -pub use pipes::{GenericChan, GenericPort}; |
40 |
| - |
41 |
| -pub use num::Num; |
42 |
| -pub use ptr::Ptr; |
43 |
| -pub use to_str::ToStr; |
44 |
| -pub use clone::Clone; |
45 |
| - |
46 |
| -pub use cmp::{Eq, Ord}; |
47 |
| -pub use hash::Hash; |
48 |
| -pub use to_bytes::IterBytes; |
49 | 45 |
|
50 | 46 | /* Reexported modules */
|
51 | 47 |
|
|
0 commit comments