Heap.remove

Remove the first instance that matches the given item. * Returns: true iff the item was found, otherwise false.

  1. alias remove = pop
  2. bool remove(T t)
    struct Heap(T, alias Compare = minHeapCompare!(T), alias Move = defaultHeapSwap!(T))
    bool
    remove
    (
    T t
    )

Meta