interface OrderedMapCreators
undocumented
Methods
createContext
Returns a new OrderedMap context instance based on the given options.
createContextoptions.Definition
createContext<UK>(options: {
listContext?: List.Context;
mapContext: RMap.Context<UK>;
}): OrderedMap.Context<UK>;
Type parameters
| Name | Description |
|---|---|
| UK | the upper key type for which the context can create instances |
Parameters
| Name | Type | Description |
|---|---|---|
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 |