Skip to main content
Module

x/rambda/index.d.ts>adjust

Faster and smaller alternative to Ramda
Go to Latest
function adjust
import { adjust } from "https://deno.land/x/rambda@v7.0.1/index.d.ts";

It replaces index in array list with the result of replaceFn(list[i]).

Parameters

index: number
replaceFn: (x: T) => T
list: T[]

Parameters

index: number
replaceFn: (x: T) => T

Returns

(list: T[]) => T[]