OrderedSet.remove

Remove an element from the set.

  1. bool remove(const(T) v)
    struct OrderedSet(V, alias _less = "a < b")
    bool
    remove
    (
    T
    )
    (
    auto ref const(T) v
    )
    if (
    is(typeof(less(T.init, V.init)))
    )
  2. size_t remove(Stuff data)

Return Value

Type: bool

true if removed, false if not found

Meta