SetImpl.remove

Removes an element from the container.

struct SetImpl(K, alias less = (a, b) => a < b, bool allowDuplicates = false, bool ownsMemory = false)
@nogc @trusted
bool
remove
(
K key
)

Return Value

Type: bool

true if the removal took place.

Meta