Module dictmap

Source
Expand description

This module contains the DictMap type alias which is a combination of IndexMap and Foldhash.

It is used as a return type for rustworkx for compatibility with Python’s dict which preserves insertion order.

Traits§

InitWithHasher

Type Aliases§

DictMap
Convenient alias to build an IndexMap using a custom hasher. For the moment, we use foldhash which is the default hasher for HashMap, another hashmap we use.