contains method

bool contains(
  1. T item
)

Check if contains item

Implementation

bool contains(T item) => _heap.contains(item);