Index import { Index } from "destack:ops"; Interface for index access a[i]. a[i] projects the place returned by a.index(i). The index type I can be any type (int, string, tuple, range, etc.). export newtype interface Index { Output; Missing = never; index(key: I): WithLifetime, L> | this.Missing; } language/library/src/ops/subscript.ds:9:21 Members Output The indexed output type. Missing = never The result when no indexed value exists. index(key: I): WithLifetime, L> | this.Missing Borrow the value at key.