summary refs log tree commit diff
path: root/src/libstd/path.rs
AgeCommit message (Collapse)AuthorLines
2013-06-28Add each_parent to WindowsPathCorey Richardson-0/+8
2013-06-28librustc: Fix merge fallout.Patrick Walton-1/+1
2013-06-28librustc: Rewrite reachability and forbid duplicate methods in type ↵Patrick Walton-9/+47
implementations. This should allow fewer symbols to be exported.
2013-06-28librustc: Remove the broken overloaded assign-ops from the language.Patrick Walton-5/+11
They evaluated the receiver twice. They should be added back with `AddAssign`, `SubAssign`, etc., traits.
2013-06-27rustpkg: Implement RUST_PATHTim Chevalier-0/+9
Unfortunately, the main test for this is ignored due to #7071. Closes #5682
2013-06-23vec: remove BaseIter implementationDaniel Micay-5/+4
I removed the `static-method-test.rs` test because it was heavily based on `BaseIter` and there are plenty of other more complex uses of static methods anyway.
2013-06-20auto merge of #7128 : yichoi/rust/fix_sometc, r=brsonbors-1/+29
- Fix stat struct for Android (found by SEGV at run-pass/stat.rs) - Adjust some test cases to rpass for Android - Modify some script to rpass for Android
2013-06-18replace #[inline(always)] with #[inline]. r=burningtree.Graydon Hoare-1/+1
2013-06-17std: fix stat struct of android (SEGV error from run-pass/stat.rs on android)Young-il Choi-1/+29
2013-06-16remove unused importsHuon Wilson-1/+0
2013-06-16std: test-fixes, remove warnings, syntax highlighting for code examples.Huon Wilson-6/+6
2013-06-14std: get std::path tests to work againErick Tryzelaar-0/+1
2013-06-13Revert "std: convert {vec,str}::to_owned to methods."Brian Anderson-6/+6
This fixes the strange random crashes in compile-fail tests. This reverts commit 96cd61ad034cc9e88ab6a7845c3480dbc1ea62f3. Conflicts: src/librustc/driver/driver.rs src/libstd/str.rs src/libsyntax/ext/quote.rs
2013-06-13std: make all strings Equiv-alent to each other, generalise Path.push_many ↵Huon Wilson-6/+6
to take any type of string.
2013-06-12std: unify the str -> [u8] functions as 3 methods: .as_bytes() and ↵Huon Wilson-1/+0
.as_bytes_with_null[_consume](). The first acts on &str and is not nul-terminated, the last two act on strings that are always null terminated (&'static str, ~str and @str).
2013-06-12std: convert {vec,str}::to_owned to methods.Huon Wilson-6/+6
2013-06-10std: remove str::{connect,concat}*.Huon Wilson-3/+3
2013-06-10std: convert character-based str::find_* to methods. Add .slice_{to,from} ↵Huon Wilson-8/+8
methods.
2013-06-10std: replace str::all/any fns and methods with iteratorsHuon Wilson-2/+2
2013-06-10std: replace str::each_split* with an iteratorHuon Wilson-30/+30
2013-06-01Remove all uses of `pub impl`. rs=stylePatrick Walton-16/+16
2013-05-30Remove copy bindings from patterns.Niko Matsakis-4/+4
2013-05-30Require documentation by default for libstdAlex Crichton-0/+2
Adds documentation for various things that I understand. Adds #[allow(missing_doc)] for lots of things that I don't understand.
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-0/+1200
This only changes the directory names; it does not change the "real" metadata names.