about summary refs log tree commit diff
path: root/src/libstd/getopts.rs
AgeCommit message (Expand)AuthorLines
2013-05-14Use static string with fail!() and remove fail!(fmt!())Björn Steinbrink-4/+4
2013-05-10renamed str::from_slice to str::to_ownedYoungsoo Son-22/+22
2013-05-10renamed vec::from_slice to vec::to_ownedYoungsoo Son-1/+1
2013-05-09auto merge of #6349 : thestinger/rust/explicit_copy, r=thestingerbors-33/+38
2013-05-09remove vecs_implicitly_copyable from libstd/libcoreDaniel Micay-33/+38
2013-05-09auto merge of #6345 : seanmoon/rust/fix-typos, r=sanxiynbors-1/+1
2013-05-09libstd: rename vec::each(var) to var.eachYoungmin Yoo-2/+2
2013-05-09Fix typosSean Moon-1/+1
2013-05-02Remove 'Local Variable' commentsBrendan Zabarauskas-8/+0
2013-04-27only use #[no_core] in libcoreDaniel Micay-3/+0
2013-04-16libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no ...Huon Wilson-52/+52
2013-04-14std: remove unused unsafe blocks/functionsAlex Crichton-110/+108
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-80/+80
2013-03-28Removing unused importsAlex Crichton-1/+1
2013-03-26Switched over a bunch of splitting funktions to non-allocating iteratorsMarvin Löbel-6/+7
2013-03-26pre-rebase commitMarvin Löbel-2/+17
2013-03-22std: replace uses of old deriving attribute with new oneAndrew Paseltiner-9/+9
2013-03-21back-renamed slice_DBG_BRWD, slice_V_DBG_BRWD -> slice, slice_DBG_UNIQ -> sli...Marvin Löbel-2/+2
2013-03-21renamed str::view -> slice_DBG_BRWDMarvin Löbel-2/+2
2013-03-13auto merge of #5293 : brson/rust/logging, r=brsonbors-1/+1
2013-03-12auto merge of #5329 : wanderview/rust/std-getopts-opts_present, r=graydonbors-4/+5
2013-03-11Remove uses of logBrian Anderson-1/+1
2013-03-11Fix std::getopts::opts_present() to check value.Ben Kelly-4/+5
2013-03-10Correct copyright year to be 2012-2013.Ben Kelly-1/+1
2013-03-10Fix formatting and errors in std::getopts example.Ben Kelly-5/+8
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-85/+85
2013-03-04Adding missing imports for tests, and gate off othersAlex Crichton-1/+0
2013-03-04Remove unused imports throughout src/Alex Crichton-1/+0
2013-02-28Fix implicit leaks of imports throughout librariesAlex Crichton-1/+1
2013-02-15libstd: Get rid of `move`.Luqman Aden-4/+4
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-48/+48
2013-02-13RIMOV core::vecBen Striegel-2/+2
2013-02-08Remove trailing whitespaceMatthew McPherrin-5/+5
2013-02-08Merge branch 'master' of https://github.com/mozilla/rustMatthew McPherrin-1/+0
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-1/+0
2013-02-06Fix sample program to compile in modern rustMatthew McPherrin-42/+44
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-49/+49
2013-01-29De-capitalize "note" to get rid of spurious tidy warningsTim Chevalier-1/+1
2013-01-29libstd: De-export libstd. rs=deexportPatrick Walton-53/+52
2013-01-24replace ConstVector trait with the Container traitDaniel Micay-3/+3
2013-01-23libsyntax: Remove `fn() unsafe { ... }`. r=graydonPatrick Walton-108/+110
2013-01-23core: Rename to_mut and from_mut to cast_to_mut and cast_from_mutTrinick-2/+2
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-6/+11
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the neare...Patrick Walton-11/+6
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest modul...Patrick Walton-6/+11
2012-12-27libstd: Fix a bunch of resolve errors in tests. rs=firePatrick Walton-1/+4
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ...Patrick Walton-0/+7
2012-12-13Replace some Eq impls with deriving_eqBrian Anderson-115/+10
2012-12-13std: Convert records to structs in getoptsBrian Anderson-33/+42
2012-12-07Make short flags with a single-char arg work in getoptsTim Chevalier-34/+37