diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-04-30 23:06:36 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-07 08:16:14 -0700 |
| commit | 9bae6ec828fdc7f87838ee008cccef90e31b9f84 (patch) | |
| tree | 97ae34844c9949ff5a49a6b99ff70dd2f0cbf6c0 /src/libstd/hash | |
| parent | 544d90940166a9a83194801437dd37c0b1872c86 (diff) | |
| download | rust-9bae6ec828fdc7f87838ee008cccef90e31b9f84.tar.gz rust-9bae6ec828fdc7f87838ee008cccef90e31b9f84.zip | |
core: Inherit possible string functionality
This moves as much allocation as possible from teh std::str module into core::str. This includes essentially all non-allocating functionality, mostly iterators and slicing and such. This primarily splits the Str trait into only having the as_slice() method, adding a new StrAllocating trait to std::str which contains the relevant new allocation methods. This is a breaking change if any of the methods of "trait Str" were overriden. The old functionality can be restored by implementing both the Str and StrAllocating traits. [breaking-change]
Diffstat (limited to 'src/libstd/hash')
| -rw-r--r-- | src/libstd/hash/sip.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/hash/sip.rs b/src/libstd/hash/sip.rs index 3c1d5897e38..58e0f4c717d 100644 --- a/src/libstd/hash/sip.rs +++ b/src/libstd/hash/sip.rs @@ -362,7 +362,7 @@ mod tests { use prelude::*; use num::ToStrRadix; use option::{Some, None}; - use str::{Str,StrSlice}; + use str::Str; use strbuf::StrBuf; use slice::{Vector, ImmutableVector}; use self::test::Bencher; |
