Expand description
Options for customizing the map type used by Chain.
The types in this module that implement Map can be provided as the
second type parameter to Chain in order to change the type of map it
uses for internal storage. For example, Chain<T, BTree>
will use BTreeMaps, while Chain<T, Hash> will use
HashMaps.