/** * Returns the first index for which the given predicate is satisfied. * * @tsplus static Chunk.Aspects indexWhere * @tsplus pipeable Chunk indexWhere */ export function indexWhere(f: Predicate) { return (self: Chunk): number => self.indexWhereFrom(0, f) }