<@U0B9XU2Q6>: Yep, it's part of the stdlib: ``` pu...
# announcements
a
@cfleming: Yep, it's part of the stdlib:
Copy code
public fun <K, V> Map<K, V>.plus(map: Map<K, V>): Map<K, V> {
    val newMap = this.toLinkedMap()
    newMap.putAll(map)
    return newMap
}