countElementOccurrencesOf method

int countElementOccurrencesOf(
  1. Set<E> pool
)

Counts column-elements equaling any element contained by pool.

Implementation

int countElementOccurrencesOf(Set<E> pool) =>
    where((element) => pool.contains(element)).length;