Skip to main content

interface OrderedMapCreators

undocumented

Methods

createContext

Returns a new OrderedMap context instance based on the given options.

Definition

createContext<UK>(options: {
    listContext?: List.Context;
    mapContext: RMap.Context<UK>;
  }): OrderedMap.Context<UK>;

Type parameters

NameDescription
UKthe upper key type for which the context can create instances

Parameters

NameTypeDescription
options{
    listContext?: List.Context;
    mapContext: RMap.Context<UK>;
  }
an object containing the following properties:
- listContext: the list context to use for key ordering
- mapContext: the map context to use for key value mapping