From 554fd8c5195424bdbcabf5de30fdc183aba391bd Mon Sep 17 00:00:00 2001 From: upstream source tree Date: Sun, 15 Mar 2015 20:14:05 -0400 Subject: obtained gcc-4.6.4.tar.bz2 from upstream website; verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository. --- .../doc/html/ext/pb_ds/basic_hash_table.html | 436 +++++++++++++++++++++ 1 file changed, 436 insertions(+) create mode 100644 libstdc++-v3/doc/html/ext/pb_ds/basic_hash_table.html (limited to 'libstdc++-v3/doc/html/ext/pb_ds/basic_hash_table.html') diff --git a/libstdc++-v3/doc/html/ext/pb_ds/basic_hash_table.html b/libstdc++-v3/doc/html/ext/pb_ds/basic_hash_table.html new file mode 100644 index 000000000..668e681d8 --- /dev/null +++ b/libstdc++-v3/doc/html/ext/pb_ds/basic_hash_table.html @@ -0,0 +1,436 @@ + + + + + + + basic_hash_table Interface + + + + +
+

basic_hash_table Interface

+ +

An abstract basic hash-based associative container.

+ +

Defined in: assoc_container.hpp

+ +

Template Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescriptionDefault Value
+
+typename Key
+
+
+

Key type.

+
-
+
+typename Mapped
+
+
+

Mapped type.

+
-
+
+class Hash_Fn
+
+
+

Hash functor.

+
-
+
+class Eq_Fn
+
+
+

Equivalence functor.

+
-
+
+class Resize_Policy
+
+
+

Resize policy.

+
-
+
+bool Store_Hash
+
+
+

Indicates whether the hash value will be stored along + with each key.

+
-
+
+class Tag
+
+
+

Mapped-structure tag.

+
-
+
+class Allocator
+
+
+

Allocator type.

+
-
+ +

Base Classes

+ + + + + + + + + + + + + + + + + + + +
ClassDerivation Type
+
+Resize_Policy
+
+
+

public

+
+
+container_base
+
+
+

public

+
+ +

Public Types and + Constants

+ +

Policy Definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeDefinitionDescription
+
+hash_fn
+
+
+
+Hash_Fn
+
+
+

Hash functor type.

+
+
+eq_fn
+
+
+
+Eq_Fn
+
+
+

Equivalence functor type.

+
+
+resize_policy
+
+
+
+Resize_Policy
+
+
+

Resize policy type.

+
+
+store_hash
+
+
+
+Store_Hash
+
+
+

Indicates whether a hash value is stored with each + entry.

+
+ +

Public Methods

+ +

Constructors, Destructor, and + Related

+ + + + + + + + + + + + + +
MethodDescription
+
+virtual 
+  ~basic_hash_table
+  ()
+
+
+

Destructor.

+
+ +

Policy Access Methods

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MethodDescription
+
+hash_fn &
+  get_hash_fn
+  ()
+
+
+

Access to the hash_fn object.

+
+
+const hash_fn &
+  get_hash_fn
+  () const
+
+
+

Const access to the hash_fn object.

+
+
+eq_fn &
+  get_eq_fn
+  ()
+
+
+

Access to the eq_fn + object.

+
+
+const eq_fn &
+  get_eq_fn
+  () const
+
+
+

Const access to the eq_fn object.

+
+
+resize_policy &
+  get_resize_policy
+  ()
+
+
+

Access to the resize_policy + object.

+
+
+const resize_policy &
+  get_resize_policy
+  () const
+
+
+

Const access to the resize_policy + object.

+
+ +

Private Methods

+ +

Resize Methods

+ + + + + + + + + + + + + +
MethodDescription
+
+virtual void 
+  do_resize
+  (size_type new_size)
+
+
+

Resizes the container object to new_size.

+
+
+ + -- cgit v1.2.3