containsAtLeast method

bool containsAtLeast(
  1. Iterable<V> other,
  2. int atLeast
)

Check if atLeast elements in the other list.

Implementation

bool containsAtLeast(Iterable<V> other, int atLeast) =>
    fn.containsAtLeast(this, other, atLeast);