Skip to main content
Module

x/rimbu/deep/deep.ts>selectWith

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
function selectWith
import { selectWith } from "https://deno.land/x/rimbu@0.14.0/deep/deep.ts";

Returns a function that selects a certain shape from a given value with the given selector.

Examples

Example 1

const items = [{ a: { b:  1, c: 'a' } }, { a: { b: 2, c: 'b' } }];
items.map(Deep.selectWith({ q: 'a.c', z: ['a.b', v => v.a.b + 1] as const }));
// => [{ q: 'a', z: [1, 2] }, { q: 'b', z: [2, 3] }]

Parameters

selector: Selector.Shape<SL>
  • a shape indicating the selection from the source values

Returns

(source: T) => Selector.Result<T, SL>