function rejectIndexedimport { rejectIndexed } from "https://dotland.deno.dev/x/rambda@9.4.1/files/index.d.ts"; rejectIndexed<T>(predicate: IndexedPredicate<T>): (x: T[]) => T[]rejectIndexed<T>(predicate: IndexedPredicate<T>, x: T[]): T[]rejectIndexed<T, U>(predicate: ObjectPredicate<T>): (x: Dictionary<T>) => Dictionary<T>rejectIndexed<T>(predicate: ObjectPredicate<T>, x: Dictionary<T>): Dictionary<T>Type ParametersTParameterspredicate: IndexedPredicate<T>Returns(x: T[]) => T[]Type ParametersTParameterspredicate: IndexedPredicate<T>x: T[]ReturnsT[]Type ParametersTUParameterspredicate: ObjectPredicate<T>Returns(x: Dictionary<T>) => Dictionary<T>Type ParametersTParameterspredicate: ObjectPredicate<T>x: Dictionary<T>ReturnsDictionary<T>