matchesOfAny<T> static method
- T interest,
- List<
T> content
Implementation
static bool matchesOfAny<T>(T interest, List<T> content) {
for (T e in content) {
if (e == interest) {
return true;
}
}
return false;
}