Skip to main content
Module

x/rimbu/mod.ts>Deep.Path.Set

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
type alias Deep.Path.Set
import { type Deep } from "https://deno.land/x/rimbu@0.14.0/mod.ts";
const { Set } = Deep.Path;

A string representing a path into an (nested) object of type T.

Examples

Example 1

const p: Path.Set<{ a: { b: { c : 5 } } }> = 'a.b'
definition: Path.Internal.Generic<T, true, false, true>