about summary refs log tree commit diff
path: root/src/libcore/option.rs
AgeCommit message (Expand)AuthorLines
2013-03-11core: Add rt mod and add the new scheduler codeBrian Anderson-0/+38
2013-03-11librustc: Replace all uses of `fn()` with `&fn()`. rs=defunPatrick Walton-15/+15
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-8/+8
2013-03-05auto merge of #5212 : thestinger/rust/iter, r=graydonbors-11/+15
2013-03-04Adding missing imports for tests, and gate off othersAlex Crichton-0/+3
2013-03-04Remove unused imports throughout src/Alex Crichton-3/+0
2013-03-03replace option::iter with a BaseIter implDaniel Micay-11/+15
2013-02-28librustc: Mark all type implementations public. rs=impl-publicityPatrick Walton-3/+3
2013-02-27Turn old `drop` blocks into `Drop` traitsBen Striegel-1/+4
2013-02-27librustc: Forbid `pub` or `priv` before trait implementationsPatrick Walton-1/+1
2013-02-20librustc: Separate most trait bounds with '+'. rs=plussingPatrick Walton-5/+5
2013-02-15rustpkg: Massage for landing.Graydon Hoare-1/+29
2013-02-15libcore: Get rid of `move`.Luqman Aden-21/+21
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-5/+5
2013-02-10make Option's iter method use a lifetimeDaniel Micay-2/+2
2013-02-07make Option's map and map_default use a lifetimeDaniel Micay-5/+5
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-3/+0
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-5/+5
2013-01-25Fix Option camel case in commentsTyler Bindon-1/+1
2013-01-13Merge pull request #4465 from thestinger/optionTim Chevalier-1/+42
2013-01-13add Option methods for in-place mutationDaniel Micay-0/+16
2013-01-14Inlining methods/functions in core.gifnksm-0/+14
2013-01-13avoid unwrap in Option::map_consume implementationDaniel Micay-1/+1
2013-01-13add Option map_consume_default methodDaniel Micay-0/+7
2013-01-13add Option methods for swap_unwrap and map_consumeDaniel Micay-0/+18
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-0/+1
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the neare...Patrick Walton-1/+0
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-0/+1
2013-01-04Rename option::get_default => get_or_default, get_zero => get_or_zeroTim Chevalier-7/+7
2013-01-04Add option::get_zeroTim Chevalier-0/+20
2012-12-27librustc: Fix the test runner, the condition system, and core test. rs=bustagePatrick Walton-0/+2
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ...Patrick Walton-0/+2
2012-12-18core: use movable self to clean up option/result.Erick Tryzelaar-40/+58
2012-12-13Replace some Eq impls with deriving_eqBrian Anderson-21/+1
2012-12-04librustc: Implement moves based on type. r=nmatsakisPatrick Walton-2/+2
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-28Register snapshotsBrian Anderson-24/+0
2012-11-19rustc: Implement explicit self for Eq and Ord. r=graydonPatrick Walton-0/+24
2012-11-08WhitespaceBrian Anderson-1/+1
2012-11-08Change option::expect to not require a Copy bound, and move instead.Brian J. Burg-4/+5
2012-10-23Remove uses of binary move - <- - from tests and librariesTim Chevalier-1/+1
2012-10-19Remove superfluous by-ref in option::get, option::get_default, option::expectTim Chevalier-9/+9
2012-10-18Rename str::to_unique to str::to_owned.Erick Tryzelaar-1/+1
2012-10-12Make moves explicit in core testsTim Chevalier-6/+6
2012-10-11Write option::chain and result::chain with `match move`Tim Chevalier-5/+3
2012-10-04Forbid deprecated modes again in coreTim Chevalier-2/+1
2012-10-04De-mode comm::ChanTim Chevalier-2/+2
2012-10-04core: Improve option docs a littleBrian Anderson-31/+105
2012-10-02Removing explicit uses of + modeTim Chevalier-17/+15
2012-10-01Attempt to fix option::test_unwrap_str breakage.Graydon Hoare-4/+4