Despite reading the Kotlin's documentation about collections I can't find if Kotlin's mutable collections are thread-safe and if there are any concurrent alternative implementations (Like HashMap vs ConcurrentHashMap in Java)
Note: I refer to the collections created by Kotlin when we do:
mutableMapOf<>()
mutableListOf<>()
mutableSetOf<>()