std::collections::map {Key, Value}

HashMap

struct HashMap (Printable)
{
	Entry*[] table;
	Allocator allocator;
	uint count; // Number of elements
	uint threshold; // Resize limit
	float load_factor;
}

Members

Methods