contains method

bool contains(
  1. T element
)

Checks if the given element exists in any set

Implementation

bool contains(T element) => _nodes.containsKey(element);