function filterIndexedimport { filterIndexed } from "https://dotland.deno.dev/x/rambda@9.4.1/files/index.d.ts"; filterIndexed<T>(predicate: IndexedPredicate<T>): (x: T[]) => T[]filterIndexed<T>(predicate: IndexedPredicate<T>, x: T[]): T[]filterIndexed<T, U>(predicate: ObjectPredicate<T>): (x: Dictionary<T>) => Dictionary<T>filterIndexed<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>