about summary refs log tree commit diff
path: root/src/libstd/path.rs
AgeCommit message (Expand)AuthorLines
2016-11-13Minor rewriting of `std::path::Path::push` doc example.Corey Farwell-5/+12
2016-11-05Rollup merge of #37585 - leodasvacas:change_into_to_from, r=alexcrichtonAlex Crichton-7/+7
2016-11-04Change Into<Vec<u8>> for String and Into<OsString> for PathBuf to From implsleonardo.yvens-7/+7
2016-11-01Rollup merge of #37316 - ollie27:docs_links, r=GuillaumeGomezGuillaume Gomez-0/+1
2016-10-24Link to PathBuf from the Path docsDuncan-3/+7
2016-10-21Fix a few links in the docsOliver Middleton-0/+1
2016-10-03Auto merge of #36815 - alexcrichton:stabilize-1.13, r=aturonbors-2/+3
2016-10-03std: Stabilize and deprecate APIs for 1.13Alex Crichton-2/+3
2016-10-01std: Move platform specific path code into sysBrian Anderson-126/+2
2016-09-10Rollup merge of #36314 - tshepang:not-needed, r=GuillaumeGomezGuillaume Gomez-2/+2
2016-09-07doc: we got coercion going on here, so no need to be this explicitTshepang Lekhonkhobe-2/+2
2016-09-04Replace `_, _` with `..`Vadim Petrochenkov-1/+1
2016-08-31Rollup merge of #35786 - GuillaumeGomez:paths_doc, r=steveklabnikJonathan Turner-32/+144
2016-08-31Improve Path and PathBuf docsGuillaume Gomez-32/+144
2016-08-30Implement `Debug` for `std::path::Iter`.Corey Farwell-0/+41
2016-08-30Implement `Debug` for `std::path::Components`.Corey Farwell-0/+40
2016-08-24Use `#[prelude_import]` in `libstd`.Jeffrey Seyfried-5/+1
2016-08-18Add a FusedIterator trait.Steven Allen-1/+7
2016-07-06Fix `std::path::Path::file_name()` docggomez-2/+12
2016-07-04Auto merge of #34590 - pwlandoll:master, r=apasel422bors-2/+1
2016-06-30Issue #34076: Removing reference to removed path.prefix() functionPeter Landoll-2/+1
2016-06-30remove unneeded allow flagSteve Klabnik-1/+0
2016-06-28Rollup merge of #34475 - frewsxcv:path-component, r=GuillaumeGomezGuillaume Gomez-0/+20
2016-06-26Expand `std::path::Component` documentation.Corey Farwell-0/+20
2016-06-25Auto merge of #34469 - frewsxcv:path-components, r=GuillaumeGomezbors-0/+4
2016-06-25Indicate how the `std::path::Components` struct is created.Corey Farwell-0/+4
2016-06-25Add hyperlinks to `std::fs` functions from `std::path`.Corey Farwell-5/+15
2016-04-10Fix Windows UNC paths in std::path docsjethrogb-2/+2
2016-03-12std: Clean out deprecated APIsAlex Crichton-69/+2
2016-02-26fixup #31878Manish Goregaokar-1/+1
2016-02-24Prefer 'match' pattern guard over conditional within body.Corey Farwell-5/+2
2016-02-24Prefer `slice::get` over length check with indexing.Corey Farwell-1/+1
2016-02-24Auto merge of #31778 - aturon:snapshot, r=alexcrichtonbors-10/+10
2016-02-23Auto merge of #31751 - gkoz:os_str_path_cmp, r=aturonbors-6/+75
2016-02-23Register new snapshotsAaron Turon-10/+10
2016-02-18Add mutual PartialEq and PartialOrd impls for Path[Buf] and OsStr[ing]Gleb Kozyrev-0/+47
2016-02-18Add mutual PartialOrd impls for Path and PathBufGleb Kozyrev-6/+21
2016-02-18Impl AsRef<Path> for Cow<OsStr>Gleb Kozyrev-0/+7
2016-02-17Update `Path::strip_prefix` docGleb Kozyrev-1/+3
2016-02-03Improve docs for Path::methodsSimonas Kazlauskas-29/+51
2016-01-26Fix warnings during testsAlex Crichton-3/+5
2016-01-16std: Stabilize APIs for the 1.7 releaseAlex Crichton-3/+46
2016-01-14Require stability annotations on fields of tuple variantsVadim Petrochenkov-8/+16
2015-12-05std: Stabilize APIs for the 1.6 releaseAlex Crichton-0/+2
2015-11-11Auto merge of #29755 - mbrubeck:stat-doc, r=steveklabnikbors-1/+2
2015-11-10[docs] Update references to renamed fs::stat functionMatt Brubeck-1/+2
2015-11-09libstd: add example for PathBuf::pushKevin Butler-0/+15
2015-11-04Auto merge of #29200 - tshepang:rustfmt-path, r=aturonbors-96/+165
2015-11-03libstd: implement PartialEq<Path> for PathBuf and Cow<Path>Kevin Butler-0/+48
2015-11-03libstd: implement From<&Path|PathBuf> for Cow<Path>Kevin Butler-0/+36