isLookup method

bool isLookup(
  1. Iterable<E> other,
  2. String checker(
    1. E element
    )
)

Implementation

bool isLookup(Iterable<E> other, String Function(E element) checker) {
  return lookup(other, checker).isNotEmpty;
}