Module rustworkx_core::dictmap

source ·
Expand description

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

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

Traits

Type Definitions

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