associate
fun RawOption.associate(delimiter: String = "="): OptionWithValues<Map<String, String>, Pair<String, String>, Pair<String, String>>
Change this option to take multiple values, each split on a delimiter, and converted to a map.
This is shorthand for splitPair, multiple, and toMap.
inline fun <K, V> RawOption.associate(delimiter: String = "=", crossinline transform: (Pair<String, String>) -> Pair<K, V>): OptionWithValues<Map<K, V>, Pair<K, V>, Pair<K, V>>
Change this option to take multiple values, each split on a delimiter and converted with the transform function and converted to a map.
This is shorthand for splitPair, convert, multiple, and toMap.