Interface IBindingsIndex<V>
interface IBindingsIndex<V> { get: ((bindings: Bindings) => V[]); getFirst: ((bindings: Bindings,
matchUndefsAsWildcard: boolean) => undefined | V); put: ((bindings: Bindings,
value: V) => V); values: (() => V[]); } Properties
get
get: ((bindings: Bindings) => V[]) getFirst
getFirst: ((bindings: Bindings,
matchUndefsAsWildcard: boolean) => undefined | V) put
put: ((bindings: Bindings,
value: V) => V)
An index for mapping bindings to values.