rust/src/liballoc
bors 87055a68c3 Auto merge of #27371 - Gankro:str-clone, r=alexcrichton
This is a minor [breaking-change], as it changes what
`boxed_str.to_owned()` does (previously it would deref to `&str` and
call `to_owned` on that to get a `String`). However `Box<str>` is such an
exceptionally rare type that this is not expected to be a serious
concern. Also a `Box<str>` can be freely converted to a `String` to
obtain the previous result anyway.
2015-07-30 10:25:23 +00:00
..
arc.rs Auto merge of #27174 - Gankro:rc-sat, r=alexcrichton 2015-07-30 05:54:55 +00:00
boxed.rs Auto merge of #27371 - Gankro:str-clone, r=alexcrichton 2015-07-30 10:25:23 +00:00
boxed_test.rs Use Box::into_raw rather than the deprecated boxed::into_raw in tests and documentation. 2015-06-26 22:29:40 +02:00
heap.rs alloc: Split apart the global alloc feature 2015-06-17 09:06:59 -07:00
lib.rs implement Clone for Box<str>, closes #27323 2015-07-29 18:43:01 -07:00
raw_vec.rs Add RawVec to unify raw Vecish code 2015-07-17 08:29:15 -07:00
rc.rs Auto merge of #27174 - Gankro:rc-sat, r=alexcrichton 2015-07-30 05:54:55 +00:00