OpenHashMap.insertN

Insert elements, all being either a key-value (map-case) or a just a key (set-case).

struct OpenHashMap(K, V = void, alias hasher = hashOf, string keyEqualPred = defaultKeyEqualPredOf!(K), alias Allocator = Mallocator.instance, bool borrowChecked = false, bool useSmallLinearSearch = true, bool usePrimeCapacity = false)
@trusted
void
insertN
(
R
)
if (
isIterable!R &&
__traits(isCopyable, T)
)

Meta