Set.remove

Remove an element from the set.

  1. bool remove(const(T) value)
    struct Set(V)
    bool
    remove
    (
    T
    )
    (
    auto ref const(T) value
    )
    if (
    is(typeof(T.init == V.init))
    )
  2. size_t remove(Stuff data)

Return Value

Type: bool

true if removed, false if not found

Meta