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