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