impl<T> [T]
This commit is contained in:
parent
5b118f5ecd
commit
633c593bc3
25 changed files with 943 additions and 0 deletions
|
|
@ -75,6 +75,7 @@ use str;
|
|||
#[cfg(stage0)]
|
||||
use str::StrExt;
|
||||
use string::{String, CowString};
|
||||
#[cfg(stage0)]
|
||||
use slice::SliceExt;
|
||||
use vec::Vec;
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,10 @@ use iter::{Iterator, IteratorExt, Map};
|
|||
use marker::Sized;
|
||||
use option::Option::{self, Some, None};
|
||||
use result::Result::{self, Ok, Err};
|
||||
#[cfg(stage0)]
|
||||
use slice::{AsSlice, Split, SliceExt, SliceConcatExt};
|
||||
#[cfg(not(stage0))]
|
||||
use slice::{AsSlice, Split, SliceConcatExt};
|
||||
#[cfg(stage0)]
|
||||
use str::{self, FromStr, StrExt};
|
||||
#[cfg(not(stage0))]
|
||||
|
|
|
|||
|
|
@ -27,7 +27,10 @@ use iter::{Iterator, IteratorExt, Map, repeat};
|
|||
use mem;
|
||||
use option::Option::{self, Some, None};
|
||||
use result::Result::{self, Ok, Err};
|
||||
#[cfg(stage0)]
|
||||
use slice::{SliceExt, SliceConcatExt};
|
||||
#[cfg(not(stage0))]
|
||||
use slice::SliceConcatExt;
|
||||
#[cfg(stage0)]
|
||||
use str::{SplitTerminator, FromStr, StrExt};
|
||||
#[cfg(not(stage0))]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue