about summary refs log tree commit diff
path: root/src/libstd/path/windows.rs
AgeCommit message (Expand)AuthorLines
2014-05-27std: Rename strbuf operations to stringRicho Healey-6/+6
2014-05-24core: rename strbuf::StrBuf to string::StringRicho Healey-17/+17
2014-05-23auto merge of #14360 : alexcrichton/rust/remove-deprecated, r=kballardbors-24/+1
2014-05-22libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`.Patrick Walton-7/+17
2014-05-22Remove a slew of old deprecated functionsAlex Crichton-24/+1
2014-05-14Add ToCStr impl for &Path and StrBufAaron Turon-2/+21
2014-05-11core: Remove the cast moduleAlex Crichton-4/+4
2014-05-07core: Inherit possible string functionalityAlex Crichton-3/+3
2014-04-28Deprecate the rev_iter pattern in all places where a DoubleEndedIterator is p...Jonathan S-8/+12
2014-04-28Provide an implementation of DoubleEndedIterator for the results of &[T]::spl...Jonathan S-10/+4
2014-04-18Replace all ~"" with "".to_owned()Richo Healey-4/+4
2014-04-18std: Make ~[T] no longer a growable vectorAlex Crichton-1/+1
2014-04-12std: update & de-~[] path's tests.Huon Wilson-31/+21
2014-04-12std: migrate path::windows to using StrBuf internally.Huon Wilson-64/+70
2014-04-12std: migrate path::unix to using Vec internally.Huon Wilson-10/+12
2014-04-11Parameterize contains_nul for BytesContainer.Kevin Butler-5/+4
2014-04-10libstd: Implement `StrBuf`, a new string buffer type like `Vec`, andPatrick Walton-11/+12
2014-03-31std: Switch field privacy as necessaryAlex Crichton-3/+3
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-2/+2
2014-03-25Changed `iter::Extendable` and `iter::FromIterator` to take a `Iterator` by v...Marvin Löbel-2/+2
2014-03-23auto merge of #13090 : thestinger/rust/iter, r=Aatchbors-9/+12
2014-03-23iter: remove `to_owned_vec`Daniel Micay-9/+12
2014-03-23use TotalEq for HashMapDaniel Micay-1/+3
2014-03-20rename std::vec -> std::sliceDaniel Micay-1/+1
2014-03-12std: allow io::File* structs to be hashableErick Tryzelaar-3/+3
2014-03-12Use generic impls for `Hash`Erick Tryzelaar-4/+4
2014-03-08Removed DeepClone. Issue #12698.Michael Darakananda-2/+2
2014-02-28std: Change assert_eq!() to use {} instead of {:?}Alex Crichton-30/+30
2014-02-27path: Implement windows::make_non_verbatim()Kevin Ballard-0/+66
2014-02-27path: clean up some lint warnings and an obsolete commentKevin Ballard-2/+1
2014-02-27std: Small cleanup and test improvementAlex Crichton-2/+2
2014-02-24Transition to new `Hash`, removing IterBytes and std::to_bytes.Huon Wilson-4/+4
2014-02-07Rewrite path::Display to reduce unnecessary allocationKevin Ballard-12/+4
2014-02-06Remove std::conditionAlex Crichton-75/+13
2014-02-02std,extra: remove use of & support for @[].Huon Wilson-8/+0
2014-02-02libextra: Remove `@str` from all the librariesPatrick Walton-2/+0
2014-01-29Removing do keyword from libstd and librustcScott Lawrence-2/+2
2014-01-23Update flip() to be rev().Sean Chalmers-5/+5
2014-01-23Rename Invert to Flip - Issue 10632Sean Chalmers-5/+5
2014-01-21[std::str] Remove the now unused not_utf8 condition.Simon Sapin-3/+3
2014-01-21[std::path] Rename .container_as_str_opt() to .container_as_str(), drop the o...Simon Sapin-14/+6
2014-01-21[std::vec] Rename .pop_opt() to .pop(), drop the old .pop() behaviorSimon Sapin-1/+1
2014-01-19auto merge of #11643 : kballard/rust/path-root-path, r=ericktbors-3/+6
2014-01-18Expose platform independent path separatorsErick Tryzelaar-22/+27
2014-01-18auto merge of #11605 : alexcrichton/rust/issue-9582, r=brsonbors-2/+2
2014-01-17Make WindowsPath::new("C:foo").root_path() return Some("C:")Kevin Ballard-3/+6
2014-01-18Rename iterators for consistencyPalmer Cox-13/+13
2014-01-17auto merge of #11585 : nikomatsakis/rust/issue-3511-rvalue-lifetimes, r=pcwaltonbors-4/+10
2014-01-16Forbid coercing unsafe functions to closuresAlex Crichton-2/+2
2014-01-15Issue #3511 - Rationalize temporary lifetimes.Niko Matsakis-4/+10