import type { ArrayPredicate } from '../types.js'; /** * Find all indices where predicate returns true. * * @param arr - Input array * @param predicate - Function that returns true/false for each item * @returns Array of indices where predicate returned true */ export declare function findIndicesFast(arr: readonly T[], predicate: ArrayPredicate): number[]; //# sourceMappingURL=findIndices.d.ts.map