| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-10-27 | Clean up intra-doc links in `std::path` | Camelid | -6/+5 | |
| 2020-10-12 | Use intra-doc links for links to module-level docs | Camelid | -2/+2 | |
| 2020-09-30 | Fix is_absolute on WASI | Ingvar Stepanyan | -1/+1 | |
| WASI does not match `cfg(unix)`, but its paths are Unix-like (`/some/path`) and don't have Windows-like prefixes. Without this change, `is_absolute` for paths like `/some/path` was returning `false`on a WASI target, which is obviously not true and undesirable. | ||||
| 2020-09-19 | Rollup merge of #73963 - hellow554:unsafe_path, r=Mark-Simulacrum | Ralf Jung | -19/+18 | |
| deny(unsafe_op_in_unsafe_fn) in libstd/path.rs The libstd/path.rs part of #73904 . Wraps the two calls to an unsafe fn Initializer::nop() in an unsafe block. | ||||
| 2020-08-31 | std: move "mod tests/benches" to separate files | Lzu Tao | -1400/+3 | |
| Also doing fmt inplace as requested. | ||||
| 2020-08-15 | Auto merge of #75246 - pickfire:patch-5, r=Amanieu | bors | -2/+7 | |
| Add more examples to Path ends_with We faced a footgun when using ends_with to check extension, showing an example could prevent that. https://github.com/rust-dc/fish-manpage-completions/pull/106/commits/2c155e50b2d9e607174908b3f80f1dcf92693eee | ||||
| 2020-08-15 | Use resolve.conf as example for Path ends_with | Ivan Tham | -6/+6 | |
| 2020-08-11 | deny(unsafe_op_in_unsafe_fn) in libstd/path.rs | Marcel Hellwig | -20/+19 | |
| 2020-08-10 | Rollup merge of #75286 - pickfire:patch-9, r=jyn514 | Yuki Okushi | -1/+5 | |
| Add additional case for Path starts with Show what happens if there is an extra extension | ||||
| 2020-08-10 | show multiple slashes starts_with Path example | Ivan Tham | -1/+2 | |
| Co-authored-by: Joshua Nelson <joshua@yottadb.com> | ||||
| 2020-08-09 | Auto merge of #75293 - poliorcetics:intra-doc-links-std-path, r=jyn514 | bors | -151/+45 | |
| Move to intra-doc links in library/std/src/path.rs Helps with #75080. @rustbot modify labels: T-doc, A-intra-doc-links, T-rustdoc Known issue: The following links are broken (they are inside trait impls, undocumented in this file, inheriting from the original doc): - [`Hasher`] - [`Self`] (referencing `../primitive.slice.html`) - [`Ordering`] | ||||
| 2020-08-09 | Rollup merge of #75289 - pickfire:patch-12, r=jonas-schievink | Yuki Okushi | -2/+2 | |
| Remove ambiguity from PathBuf pop example | ||||
| 2020-08-09 | Rollup merge of #75288 - pickfire:patch-11, r=jonas-schievink | Yuki Okushi | -1/+1 | |
| Use assert! for Path exists example to check bool | ||||
| 2020-08-09 | Rollup merge of #75287 - pickfire:patch-10, r=jonas-schievink | Yuki Okushi | -0/+2 | |
| Show Path extension example change multi extension | ||||
| 2020-08-09 | Rollup merge of #75285 - pickfire:patch-8, r=jonas-schievink | Yuki Okushi | -2/+3 | |
| Separate example for Path strip_prefix | ||||
| 2020-08-09 | Rollup merge of #75284 - pickfire:patch-7, r=LukasKalbertodt | Yuki Okushi | -0/+7 | |
| Show relative example for Path ancestors | ||||
| 2020-08-08 | Move to intra-doc links in library/std/src/path.rs | Alexis Bourget | -151/+45 | |
| 2020-08-08 | Remove abmiguity from PathBuf pop example | Ivan Tham | -2/+2 | |
| 2020-08-08 | Use assert! for Path exists example to check bool | Ivan Tham | -1/+1 | |
| 2020-08-08 | Show Path extension example change multi extension | Ivan Tham | -0/+2 | |
| 2020-08-08 | Add additonal case for Path starts with | Ivan Tham | -1/+4 | |
| Show what happens if there is an extra extension | ||||
| 2020-08-08 | Separate example for Path strip_prefix | Ivan Tham | -2/+3 | |
| 2020-08-08 | Show relative example for Path ancestors | Ivan Tham | -0/+7 | |
| 2020-08-08 | Show multi extension example for Path in doctests | Ivan Tham | -6/+4 | |
| 2020-08-07 | Add more examples to Path ends_with | Ivan Tham | -0/+5 | |
| We faced a footgun when using ends_with to check extension, showing an example could prevent that. | ||||
| 2020-07-27 | mv std libs to library/ | mark | -0/+4230 | |
