data class ParseResult
consumedCount
- The number of items in argv that were consumed. This number must be >= 1 if the
entire option was consumed, or 0 if there are other options in the same index (e.g. flag options)
invocation
- The data from this invocation.
ParseResult(consumedCount: Int, name: String, values: List<String>) ParseResult(consumedCount: Int, invocation: Invocation) |
val consumedCount: Int
The number of items in argv that were consumed. This number must be >= 1 if the entire option was consumed, or 0 if there are other options in the same index (e.g. flag options) |
|
val invocation: Invocation
The data from this invocation. |