/** * Removes all entries in the `HashMap` which have the specified keys. * * @tsplus static HashMap.Aspects removeMany * @tsplus pipeable HashMap removeMany */ export function removeMany(ks: Iterable) { return (self: HashMap): HashMap => self.mutate((m) => { for (const k of ks) { m.remove(k) } }) }