OptionInvocationWithArgument

data class OptionInvocationWithArgument<OptionKeyType : Enum<OptionKeyType>>(    val processor: OptionProcessor<OptionKeyType>,     val keyword: String,     val argument: String)

A helper class to make bodies of options with arguments more directly expressible.

Constructors

Link copied to clipboard
fun <OptionKeyType : Enum<OptionKeyType>> OptionInvocationWithArgument(    processor: OptionProcessor<OptionKeyType>,     keyword: String,     argument: String)

Properties

Link copied to clipboard
val argument: String
Link copied to clipboard
val keyword: String
Link copied to clipboard
val processor: OptionProcessor<OptionKeyType>