filterKeys method
Returns a map containing all key-value pairs with keys matching the given predicate
.
The returned map preserves the entry iteration order of the original map.
Implementation
KtMap<K, V> filterKeys(bool Function(K) predicate) {
final result = linkedMapFrom<K, V>();
for (final entry in iter) {
if (predicate(entry.key)) {
result.put(entry.key, entry.value);
}
}
return result;
}