CharSequenceConversionsLaws

object CharSequenceConversionsLaws

Functions

Link copied to clipboard
inline fun <K> CharSequence.associateByLaw(keySelector: (Char) -> K): Map<K, Char>
Link copied to clipboard
inline fun <K, V> CharSequence.associateLaw(transform: (Char) -> Pair<K, V>): Map<K, V>
Link copied to clipboard
inline fun <T> CharSequence.associateWithLaw(valueSelector: (Char) -> T): Map<Char, T>
Link copied to clipboard
inline fun CharSequence.toHashSetLaw(): HashSet<Char>
Link copied to clipboard
inline fun CharSequence.toListLaw(): List<Char>
Link copied to clipboard
inline fun CharSequence.toMutableListLaw(): List<Char>
Link copied to clipboard
inline fun CharSequence.toSetLaw(): Set<Char>