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. --- .../ext/pb_ds/string_trie_e_access_traits.html | 400 +++++++++++++++++++++ 1 file changed, 400 insertions(+) create mode 100644 libstdc++-v3/doc/html/ext/pb_ds/string_trie_e_access_traits.html (limited to 'libstdc++-v3/doc/html/ext/pb_ds/string_trie_e_access_traits.html') diff --git a/libstdc++-v3/doc/html/ext/pb_ds/string_trie_e_access_traits.html b/libstdc++-v3/doc/html/ext/pb_ds/string_trie_e_access_traits.html new file mode 100644 index 000000000..4ce9e864a --- /dev/null +++ b/libstdc++-v3/doc/html/ext/pb_ds/string_trie_e_access_traits.html @@ -0,0 +1,400 @@ + + + + + + + string_trie_e_access_traits Interface + + + + +
+

string_trie_e_access_traits Interface

+ +

Element access traits for string types.

+ +

Defined in: trie_policy.hpp

+ +

Template Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ParameterDescriptionDefault Value
+
+class String 
+
+
+

String type.

+
std::string
+
+typename String::value_type Min_E_Val 
+
+
+

Minimal element.

+
SCHAR_MIN
+
+typename String::value_type Max_E_Val 
+
+
+

Maximal element.

+
SCHAR_MAX
+
+bool Reverse 
+
+
+

Indicates whether reverse iteration should be + used.

+
false
+
+class Allocator 
+
+
+

Allocator type.

+
+
+std::allocator<char>
+
+
+ +

Public Types and + Constants

+ +

General Definitions

+ + + + + + + + + + + + + + + + + +
TypeDefinitionDescription
+
+size_type
+
+
+
+typename Allocator::size_type
+
+
+

Size type.

+
+ +

Key-Type Definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + +
TypeDefinitionDescription
+
+key_type
+
+
+
+String
+
+
+

Key type.

+
+
+const_key_reference
+
+
+
+typename Allocator::template rebind<
+    key_type>::other::const_reference
+
+
+

Const key reference type.

+
+ +

Element-Type + Definitions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TypeDefinitionDescription
+
+reverse
+
+
+
+Reverse
+
+
+

Reverse + iteration indicator.

+
+
+const_iterator
+
+
+
+typename __gnu_pbds::detail::__conditional_type<
+    Reverse,
+    typename String::const_reverse_iterator,
+    typename String::const_iterator>::__type
+
+
+

Element const iterator type.

+
+
+e_type
+
+
+
+typename std::iterator_traits<const_iterator>::value_type
+
+
+

Element type.

+
+
+min_e_val
+
+
+
+Min_E_Val
+
+
+

Minimal element.

+
+
+max_e_val
+
+
+
+Max_E_Val
+
+
+

Maximal element.

+
+
+max_size
+
+
+
+max_e_val - min_e_val + 1
+
+
+

Number of distinct elements.

+
+ +

Public Methods

+ +

Access Methods

+ + + + + + + + + + + + + + + + + + + + + + + + + +
MethodDescription
+
+inline static const_iterator
+  begin
+  (const_key_reference r_key)
+
+
+

Returns a const_iterator to + the first element of r_key.

+
+
+inline static const_iterator
+  end
+  (const_key_reference r_key)
+
+
+

Returns a const_iterator to + the after-last element of r_key.

+
+
+inline static size_type
+  e_pos
+  (e_type e)
+
+
+

Maps an eelement to a + position.

+
+
+ + -- cgit v1.2.3