Skip to main content
Module

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

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

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

Examples

Example 1

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