plus

abstract operator fun plus(others: Map<String, C>): Self
open operator fun plus(others: Iterable<Pair<String, C>>): Self
open operator fun plus(others: Sequence<Pair<String, C>>): Self

Returns a copy of this store with every entry of others added (overriding same-named existing ones).


open operator fun plus(other: Pair<String, C>): Self

Returns a copy of this store with other added (overriding an existing entry with the same alias).


open fun plus(first: Pair<String, C>, vararg others: Pair<String, C>): Self

Returns a copy of this store with first and others added (overriding same-named existing entries).