std::collections::set {Value}

HashSet

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

Members

Methods