[][src]Module toolshed::map

Maps of keys to values that can be used with the Arena.

Structs

BloomMap

A variant of the Map that includes a bloom filter using the bloom function for keys that can be represented as byte slices.

Map

A map of keys K to values V. The map is built as a pseudo-random binary tree with hashes of keys used for balancing the tree nodes.

MapIter

An iterator over the entries in the map. All entries are returned in insertion order.