summary refs log tree commit diff
path: root/src/libcollections/string.rs
AgeCommit message (Expand)AuthorLines
2014-12-09rollup merge of #19626: bluss/string-extend-strAlex Crichton-0/+44
2014-12-09Add a doctest for the std::string::as_string method.jbranchaud-0/+13
2014-12-08Change 'Example' to 'Examples' throughout collections' rustdocs.jbranchaud-25/+26
2014-12-07string: Add test for FromIterator<&str> and Extend<&str>bluss-2/+9
2014-12-07string: Add test for FromIterator<char> and Extend<char>bluss-0/+14
2014-12-07string: Implement FromIterator<&str> and Extend<&str> for Stringbluss-0/+21
2014-12-07string: Use the iterator size_hint() in .extend()bluss-0/+2
2014-12-06libcollections: remove unnecessary `to_string()` callsJorge Aparicio-12/+12
2014-12-06libcollections: remove unnecessary `as_slice()` callsJorge Aparicio-23/+23
2014-12-03Deprecate EquivJorge Aparicio-1/+2
2014-12-03Fix falloutJorge Aparicio-2/+4
2014-12-03Overload the `==` operatorJorge Aparicio-1/+44
2014-11-25Deprecate MaybeOwned[Vector] in favor of CowJorge Aparicio-18/+30
2014-11-22std: Align `raw` modules with unsafe conventionsAlex Crichton-20/+56
2014-11-18rollup merge of #19008: alex/collections-typosJakub Bukaj-2/+2
2014-11-17Fix fallout from coercion removalNick Cameron-16/+16
2014-11-16Fixed several typos in libcollectionsAlex Gaynor-2/+2
2014-11-16Move ToString to collections::stringBrendan Zabarauskas-1/+37
2014-11-16Move IntoString to collections::stringBrendan Zabarauskas-0/+6
2014-11-16Move FromStr to core::strBrendan Zabarauskas-1/+8
2014-11-12Fix remaining documentation to reflect fail!() -> panic!()Barosl Lee-2/+2
2014-11-08Renamed Extendable to Extendgamazeps-2/+2
2014-11-06rollup merge of #18605 : Gankro/collect-fruitAlex Crichton-25/+33
2014-11-06Implement low-hanging fruit of collection conventionsAlexis Beingessner-25/+33
2014-11-06Prelude: rename and consolidate extension traitsAaron Turon-4/+4
2014-11-01collections: Remove all collections traitsAlex Crichton-12/+31
2014-10-30rollup merge of #18443 : alexcrichton/deref-vec-and-stringAlex Crichton-0/+5
2014-10-29collections: impl Deref for Vec/StringAlex Crichton-0/+5
2014-10-29Rename fail! to panic!Steve Klabnik-7/+7
2014-10-24Make the Vec data structure layout match raw::Slice.Clark Gaebel-1/+1
2014-10-19Remove a large amount of deprecated functionalityAlex Crichton-218/+0
2014-10-13Clean up rustc warnings.NODA, Kai-11/+14
2014-10-10Register new snapshotsAlex Crichton-23/+0
2014-10-08add #[experimental] as_string/as_vec functionsDaniel Micay-2/+26
2014-10-07Rename slicing methodsNick Cameron-0/+23
2014-10-07Use slice syntax instead of slice_to, etc.Nick Cameron-3/+3
2014-10-05String::truncate doc: also fails if not a char boundarySimon Sapin-4/+5
2014-10-03Fix preallocation amount in String::from_utf16Simon Sapin-1/+1
2014-10-02Revert "Use slice syntax instead of slice_to, etc."Aaron Turon-3/+3
2014-10-02Revert "Put slicing syntax behind a feature gate."Aaron Turon-2/+2
2014-10-02Revert "Review and rebasing changes"Aaron Turon-29/+0
2014-10-02Review and rebasing changesNick Cameron-0/+29
2014-10-02Put slicing syntax behind a feature gate.Nick Cameron-2/+2
2014-10-02Use slice syntax instead of slice_to, etc.Nick Cameron-3/+3
2014-09-30librustc: Forbid `..` in range patterns.Patrick Walton-7/+7
2014-09-29rollup merge of #17585 : sfackler/string-sliceAlex Crichton-0/+32
2014-09-26Implement Slice for String and strSteven Fackler-0/+32
2014-09-27Correct stability marker in string.rsSqueaky-1/+1
2014-09-23Deal with the fallout of string stabilizationAlex Crichton-25/+34
2014-09-22collections: Deprecate shift_char for insert/removeAlex Crichton-15/+87