Set.remove

Remove values from the map.

  1. size_t remove(E value)
  2. size_t remove(E values)
    struct Set(T, Allocator = shared const Mallocator)
    size_t
    remove
    (
    E
    )
    (
    in E values
    )
    if (
    isInputRange!E &&
    isImplicitlyConvertible!(ElementType!E, SlotType)
    )

Return Value

Type: size_t

the number of elements removed.

Meta