function forEachIndexedimport { forEachIndexed } from "https://dotland.deno.dev/x/rambda@9.4.1/files/index.d.ts"; forEachIndexed<T>(fn: IndexedIterator<T, void>, list: T[]): T[]forEachIndexed<T>(fn: IndexedIterator<T, void>): (list: T[]) => T[]forEachIndexed<T>(fn: ObjectIterator<T, void>, list: Dictionary<T>): Dictionary<T>forEachIndexed<T, U>(fn: ObjectIterator<T, void>): (list: Dictionary<T>) => Dictionary<T>Type ParametersTParametersfn: IndexedIterator<T, void>list: T[]ReturnsT[]Type ParametersTParametersfn: IndexedIterator<T, void>Returns(list: T[]) => T[]Type ParametersTParametersfn: ObjectIterator<T, void>list: Dictionary<T>ReturnsDictionary<T>Type ParametersTUParametersfn: ObjectIterator<T, void>Returns(list: Dictionary<T>) => Dictionary<T>