/** * Safely lookup the value for the specified key in the `HashMap` using the * internal hashing function. * * @tsplus pipeable-index HashMap * @tsplus static HashMap.Aspects get * @tsplus pipeable HashMap get */ export function get(key: K) { return (self: HashMap): Maybe => self.getHash(key, Hash.unknown(key)) }