Skip to main content
Module

x/rambda/immutable.d.ts>update

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

It returns a copy of list with updated element at index with newValue.

Parameters

index: number
newValue: T
list: readonly T[]

Returns

readonly T[]

Parameters

index: number
newValue: T

Returns

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