In my KMP project I have a shared fun that does so...
# ios
c
In my KMP project I have a shared fun that does some sorting and grouping with Kotlin's nice collection APIs (sortedWith, groupBy, mapValues, etc). In my iOS target, the return type of this function is mapped to Dictionary. However, Dictionary doesn't preserve the sort order the way Kotlin Map does. Is there a way I can adjust the type mappings in my project so that I can return an OrderedDictionary from the Swift OrderedCollections library instead?