about summary refs log tree commit diff
path: root/src/libcore/result.rs
AgeCommit message (Expand)AuthorLines
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-5/+5
2015-01-17Evaluate # fn in docsSteve Klabnik-2/+0
2015-01-13Use if-let in std::result documentationSimonas Kazlauskas-6/+4
2015-01-13Fix a typo in std::result documentationSimonas Kazlauskas-1/+1
2015-01-08Improvements to feature stagingBrian Anderson-1/+1
2015-01-07fix the `&mut _` patternsJorge Aparicio-3/+3
2015-01-06core: split into fmt::Show and fmt::StringSean McArthur-4/+4
2015-01-05rollup merge of #20482: kmcallister/macro-reformAlex Crichton-2/+2
2015-01-05Modernize macro_rules! invocationsKeegan McAllister-2/+2
2015-01-05Stabilization of impls and fallout from stabilizationAaron Turon-0/+9
2015-01-03sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rsJorge Aparicio-2/+2
2015-01-03sed -i -s 's/\bmod,/self,/g' **/*.rsJorge Aparicio-1/+1
2015-01-03core: use assoc types in Iterator et alJorge Aparicio-12/+20
2014-12-26Fixed minor typo in docs for `Result`'s `err` methodYawarRaza7349-1/+1
2014-12-21Fallout of std::str stabilizationAlex Crichton-1/+1
2014-12-19std: Second pass stabilization of Result<T, E>Alex Crichton-54/+90
2014-12-19libcore: use `#[deriving(Copy)]`Jorge Aparicio-5/+1
2014-12-18librustc: Always parse `macro!()`/`macro![]` as expressions if notPatrick Walton-1/+1
2014-12-15Move hash module from collections to coreSteven Fackler-1/+1
2014-12-13libcore: use unboxed closures in `Result` methodsJorge Aparicio-6/+8
2014-12-11Register new snapshotsAlex Crichton-1/+0
2014-12-09rollup merge of #19653: frewsxcv/rm-reexportsAlex Crichton-1/+1
2014-12-08Remove Result and Option reexportsCorey Farwell-1/+1
2014-12-08librustc: Make `Copy` opt-in.Niko Matsakis-0/+5
2014-12-05Utilize fewer reexportsCorey Farwell-1/+2
2014-12-04auto merge of #18980 : erickt/rust/reader, r=ericktbors-5/+4
2014-12-04core: fix a doctestErick Tryzelaar-2/+2
2014-12-03Fix falloutJorge Aparicio-3/+3
2014-11-30std: add Reader impl for &[u8]Erick Tryzelaar-4/+3
2014-11-25Fallout from stabilizationAaron Turon-2/+2
2014-11-22Fix typo in Result documentationNicholas Bishop-1/+1
2014-11-19rollup merge of #18903: steveklabnik/error_handling_guideJakub Bukaj-46/+0
2014-11-18Error handling guideSteve Klabnik-46/+0
2014-11-17Switch to purely namespaced enumsSteven Fackler-2/+4
2014-11-17Fix fallout from coercion removalNick Cameron-3/+3
2014-11-16rollup merge of #18970: aturon/fixup-stableJakub Bukaj-1/+6
2014-11-14libs: fix #[stable] inheritance falloutAaron Turon-1/+6
2014-11-12Results aren't panicsArtem-1/+1
2014-11-05Fix fallout of changing the expansion of `#[deriving(PartialEq)]`Jorge Aparicio-1/+0
2014-11-05Repair various cases where values of distinct types were being operatedNiko Matsakis-2/+2
2014-11-03core: Fix fallout of changing `#[deriving(Clone)]`Jorge Aparicio-1/+0
2014-10-29Rename fail! to panic!Steve Klabnik-23/+23
2014-10-19Remove a large amount of deprecated functionalityAlex Crichton-40/+0
2014-10-07Reinstate AsSlice impls for Option and ResultNick Cameron-0/+21
2014-10-07Rename slice::SliceNick Cameron-21/+0
2014-09-17doc: Methods for result::Result.Jonas Hietala-28/+228
2014-09-17doc: Cleanup.Jonas Hietala-27/+27
2014-09-16Align with _mut conventionsAaron Turon-2/+14
2014-08-28stabilize core::resultAaron Turon-41/+173
2014-07-14Document that Result.unwrap prints the Err's valuemasklinn-2/+8