Perhaps ```hashTwo = hashOne.map { (k, v ) -> k!! to v}```
l
Perhaps
Copy code
hashTwo = hashOne.map { (k, v ) -> k!! to v}
๐Ÿงต 1
๐Ÿ‘ 1
r
or
Copy code
hashTwo = hashOne.mapKeys { it.key!! }
Still not sure what the use case of this is tho.