Parsed reports whether f.Parse has been called.
()
| 1230 | |
| 1231 | // Parsed reports whether f.Parse has been called. |
| 1232 | func (f *FlagSet) Parsed() bool { |
| 1233 | return f.parsed |
| 1234 | } |
| 1235 | |
| 1236 | // Parse parses the command-line flags from os.Args[1:]. Must be called |
| 1237 | // after all flags are defined and before flags are accessed by the program. |
no outgoing calls