SSOHashMapOrSet.insertN

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

struct SSOHashMapOrSet(K, V = void, alias Allocator = null, alias hasher = hashOf, uint smallBinMinCapacity = 1, uint capacityScaleNumerator = 2, uint capacityScaleDenominator = 1)
pragma(inline) @trusted
void
insertN
(
R
)
if (
isIterable!R &&
__traits(isCopyable, T)
)
if (
smallBinMinCapacity >= 1
)

Meta