Exemplo n.º 1
0
	unordered_multimap(
		InputIt first,
		InputIt last,
		size_type bucket_count = unordered_map_default_bucket_count,
		const Hash& hash = Hash(),
		const KeyEqual& equal = KeyEqual(),
		const Allocator& alloc = Allocator())
			: _Base(first, last, bucket_count, hash, equal, alloc) {}
Exemplo n.º 2
0
		UnorderedMapPrototype(const KeyEqual& k = KeyEqual(), const Hash& h = Hash())
		: Equal(k), Hasher(h)
		{
		}
Exemplo n.º 3
0
	explicit unordered_map(
		size_type bucket_count = unordered_map_default_bucket_count,
		const Hash& hash = Hash(),
		const KeyEqual& equal = KeyEqual(),
		const Allocator& alloc = Allocator())
			: _Base(bucket_count, hash, equal, alloc) {}