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