insertMany

Inserts several values into this ordered set.

  1. bool[Us.length] insertMany(Us values)
    static if(isOrdered!ordering)
    static if(ordering == Ordering.sortedUniqueSet)
    @"complexity", "O(length)"
    bool[Us.length]
    insertMany
    (
    SearchPolicy sp = SearchPolicy.binarySearch
    Us...
    )
    ()
    if (
    values.length >= 1 &&
    allSatisfy!(isElementAssignable, Us)
    )
  2. void insertMany(Us values)

Return Value

Type: bool[Us.length]

bool-array with same length as values, where i:th bool value is set if value[i] wasn't previously in this.

Meta