/** * Applies the specified function to the values of the `HashMap`. * * @tsplus static HashMap.Aspects forEach * @tsplus pipeable HashMap forEach */ export function forEach(f: (v: V) => void) { return (self: HashMap): void => self.forEachWithIndex((_, value) => f(value)) }