associate With To
abstract fun <V, M : MutableMapWrapper<in Char, in V>> associateWithTo(destination: M, valueSelector: (Char) -> V): M
将 CharSequenceWrapper 中的每个字符与指定值关联,并将结果添加到目标 MutableMapWrapper 中。
参考 kotlin.sequences.associateWithTo
Return
目标 MutableMapWrapper。
Parameters
destination
目标 MutableMapWrapper。
value Selector
用于为每个字符选择值的函数。