summaryrefslogtreecommitdiff
path: root/src/pkg/flag
Commit message (Expand)AuthorAgeFilesLines
* flag: mention -h in docsAndrew Gerrand2014-08-081-2/+3
* flag: fix typoMatthew Cottingham2014-07-161-1/+1
* flag: add a little more doc comment to Duration.David Symonds2014-06-281-0/+4
* flag: document that Bool also accepts "T" and "F"Rob Pike2014-04-161-1/+2
* flag: remove extra space in error messageRui Ueyama2014-04-101-1/+1
* flag: remove unused FlagSet.exitOnError fieldChaiShushan2013-12-171-1/+0
* flag: export commandLine, the previously internal default FlagSetRob Pike2013-08-083-43/+40
* flag: document the zero value of FlagSetKyle Lemons2013-08-061-3/+13
* all: be more idiomatic when documenting boolean return values.Rob Pike2013-07-231-1/+1
* flag: add Getter interface; implement for all Value typesRick Arnold2013-06-272-0/+69
* all: make tests able to run multiple times.R?my Oudompheng2013-01-271-11/+10
* flag: add implicit boolFlag interfaceRick Arnold2012-12-222-1/+55
* flag: fix bug in handling of booleans on errorRob Pike2012-07-271-1/+1
* flag: fix indexing doc.David Symonds2012-06-241-1/+1
* flag: include flag name in redefinition panic.David Symonds2012-05-241-2/+3
* flag: update style.David Symonds2012-04-171-4/+6
* flag: add examplesRob Pike2012-03-221-0/+83
* flag: describe valid input for Duration flags.David Symonds2012-02-071-0/+1
* build: remove Make.pkg, Make.toolRuss Cox2012-01-301-11/+0
* flag: allow a FlagSet to not write to os.StderrBrad Fitzpatrick2012-01-272-7/+36
* flag: change Set method Value interface to return error instead of bool.David Symonds2011-12-252-35/+32
* flag: add Duration flag type.David Symonds2011-12-232-15/+68
* use new strconv APIRuss Cox2011-12-051-6/+6
* src/pkg/[a-m]*: gofix -r error -force=errorRuss Cox2011-11-011-4/+5
* flag: make zero FlagSet usefulRuss Cox2011-09-152-4/+21
* flag: add Parsed, restore UsageRuss Cox2011-08-312-1/+24
* flag: make -help nicer.Rob Pike2011-07-112-1/+58
* sort: change IntArray etc. to IntSlice for better name hygiene.Rob Pike2011-06-111-1/+1
* flag: fix buildAndrew Gerrand2011-05-221-1/+1
* flags: allow distinct sets of flags.Rob Pike2011-05-223-141/+332
* flag: fix docs on flag.Var.David Symonds2011-05-191-2/+6
* src/pkg: make package doc comments consistently start with "Package foo".Nigel Tao2011-04-201-1/+1
* flag: fix error in documentation example.Rob Pike2011-03-251-1/+1
* flag: document Nflag functionFazlul Shahriar2011-03-201-0/+1
* flag: fix example in doc comment.Rob Pike2011-03-171-1/+1
* flag: visit the flags in sorted order, for better messages.Rob Pike2011-03-102-4/+30
* flag: failf documentation nitRobert Hencke2011-03-081-1/+1
* flag: replace fail with failfRobert Hencke2011-03-081-11/+8
* flag: allow hexadecimal and octal input for integer flags.Luuk van Dijk2011-02-112-7/+7
* delete float, complex - code changesRuss Cox2011-01-192-41/+4
* a few more errors caught by the print checkerRob Pike2010-12-081-1/+1
* flag: handle multiple calls to flag.ParseRuss Cox2010-12-073-66/+95
* flag: fix format error in boolean error report. just use %q; the values are s...Rob Pike2010-12-061-2/+2
* use appendRuss Cox2010-10-271-4/+1
* build: no required environment variablesRuss Cox2010-08-181-1/+1
* flag: eliminate unnecessary structsRuss Cox2010-04-151-48/+32
* flags: better tests.Rob Pike2010-04-062-18/+138
* simplify various code using new map index ruleRuss Cox2010-03-301-5/+1
* Flags: add user-defined flag types. The change is really no code; it's just p...Rob Pike2010-03-292-45/+64
* Add strconv.Atob, Btoa.Rob Pike2010-03-251-13/+2