class DefaultMapLikeToIterablePairTransformer : MapLikeToIterablePairTransformer
Transforms all Map as well as all IterableLike which have a resulting element type of either [Pair]<*, *>
or [Map.Entry]<*, *>
to an Iterable with an element type [Pair]<K, V>
.
DefaultMapLikeToIterablePairTransformer(container: AssertionContainer<*>)
Transforms all Map as well as all IterableLike which have a resulting element type of either |
fun supportedTypes(): List<String> |
|
fun <K, V> unsafeTransform(mapLike: IterableLike): List<Pair<K, V>>
Transforms the given mapLike to an Iterable |