/** * @tsplus static MutableHashMap.Aspects has * @tsplus pipeable MutableHashMap has */ export function has(key: K) { return (self: MutableHashMap): boolean => self.get(key).isSome() }