import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { HashSet } from "@tsplus/stdlib/collections/HashSet/definition"; /** * Returns `true` if any value in the `HashSet` matches the specified predicate. * @tsplus static HashSet.Aspects some * @tsplus pipeable HashSet some * @tsplus location "@tsplus/stdlib/collections/HashSet/operations/some" */ export declare function some(f: Predicate): (self: HashSet) => boolean; //# sourceMappingURL=some.d.ts.map