@@ -352,7 +352,7 @@ Here is the call graph for this function:
- | const char large_number::digit_char |
+ char large_number::digit_char |
( |
size_t |
i | ) |
@@ -366,13 +366,13 @@ Here is the call graph for this function:
returns i^th digit as an ASCII character
-
-
+
-
@@ -412,8 +412,8 @@ template<class T >
265 uint64_t carry = 0, temp;
-
- 267 temp = (*this)[i] * n;
+
+ 267 temp = static_cast<uint64_t >((*this)[i]) * n;
@@ -438,8 +438,8 @@ Here is the call graph for this function:
-
-◆ num_digits()
+
+◆ num_digits()
@@ -448,7 +448,7 @@ Here is the call graph for this function:
- | const size_t large_number::num_digits |
+ size_t large_number::num_digits |
( |
| ) |
const |
@@ -465,7 +465,7 @@ Here is the call graph for this function:
-
@@ -601,15 +601,15 @@ Here is the call graph for this function:
-
+
196 unsigned int carry = 0;
198 for (i = 0; i < max_L || carry != 0; i++) {
-
+
-
+
-
+
204 (*this)[i] = carry % 10;
@@ -965,7 +965,7 @@ template<class T >
void add_digit(unsigned int value) Definition: large_number.h:118
Definition: large_number.h:24
-const size_t num_digits() const Definition: large_number.h:130
+size_t num_digits() const Definition: large_number.h:130
large_number() Definition: large_number.h:27
@@ -980,7 +980,7 @@ template<class T >
diff --git a/db/d93/check__prime_8cpp.html b/db/d93/check__prime_8cpp.html
index c31d893a1..e5a0f5b17 100644
--- a/db/d93/check__prime_8cpp.html
+++ b/db/d93/check__prime_8cpp.html
@@ -218,7 +218,7 @@ Here is the call graph for this function:
diff --git a/db/dd3/ode__forward__euler_8cpp.html b/db/dd3/ode__forward__euler_8cpp.html
index 410ce2d1d..7e1a8a4f1 100644
--- a/db/dd3/ode__forward__euler_8cpp.html
+++ b/db/dd3/ode__forward__euler_8cpp.html
@@ -405,7 +405,7 @@ Here is the call graph for this function:
diff --git a/db/df3/happy__number_8cpp.html b/db/df3/happy__number_8cpp.html
index 4c07c4190..6551f7f05 100644
--- a/db/df3/happy__number_8cpp.html
+++ b/db/df3/happy__number_8cpp.html
@@ -197,7 +197,7 @@ Here is the call graph for this function:
diff --git a/dc/d1a/pascal__triangle_8cpp.html b/dc/d1a/pascal__triangle_8cpp.html
index 40337b4fd..fd4f1b2e0 100644
--- a/dc/d1a/pascal__triangle_8cpp.html
+++ b/dc/d1a/pascal__triangle_8cpp.html
@@ -282,7 +282,7 @@ Here is the call graph for this function:
diff --git a/dc/d38/ordinary__least__squares__regressor_8cpp.html b/dc/d38/ordinary__least__squares__regressor_8cpp.html
index 02a87c2e5..889545acf 100644
--- a/dc/d38/ordinary__least__squares__regressor_8cpp.html
+++ b/dc/d38/ordinary__least__squares__regressor_8cpp.html
@@ -986,7 +986,7 @@ template<typename T >
diff --git a/dc/d93/trie__modern_8cpp.html b/dc/d93/trie__modern_8cpp.html
index eba28d5a2..a4cb32a8f 100644
--- a/dc/d93/trie__modern_8cpp.html
+++ b/dc/d93/trie__modern_8cpp.html
@@ -162,7 +162,7 @@ Functions
diff --git a/dc/db5/text__search_8cpp.html b/dc/db5/text__search_8cpp.html
index 044903db7..e5403c426 100644
--- a/dc/db5/text__search_8cpp.html
+++ b/dc/db5/text__search_8cpp.html
@@ -180,7 +180,7 @@ Here is the call graph for this function:
diff --git a/dc/dc5/paranthesis__matching_8cpp.html b/dc/dc5/paranthesis__matching_8cpp.html
index 58e74e055..4709183c3 100644
--- a/dc/dc5/paranthesis__matching_8cpp.html
+++ b/dc/dc5/paranthesis__matching_8cpp.html
@@ -218,7 +218,7 @@ Implementation is C-type and does not utilize the C++ constructs
diff --git a/dc/dfe/ternary__search_8cpp.html b/dc/dfe/ternary__search_8cpp.html
index c5b5ca8a7..f74752f58 100644
--- a/dc/dfe/ternary__search_8cpp.html
+++ b/dc/dfe/ternary__search_8cpp.html
@@ -452,7 +452,7 @@ Here is the call graph for this function:
diff --git a/dd/d00/class_queue-members.html b/dd/d00/class_queue-members.html
index 01a5ca16e..6d1d00b7b 100644
--- a/dd/d00/class_queue-members.html
+++ b/dd/d00/class_queue-members.html
@@ -109,7 +109,7 @@ $(document).ready(function(){initNavTree('d4/da4/class_queue.html','../../'); in
diff --git a/dd/d1b/structquery.html b/dd/d1b/structquery.html
index 9f2c435fd..1e903670e 100644
--- a/dd/d1b/structquery.html
+++ b/dd/d1b/structquery.html
@@ -119,7 +119,7 @@ int i |
diff --git a/dd/d29/false__position_8cpp.html b/dd/d29/false__position_8cpp.html
index 8647988a5..c5ff92eb7 100644
--- a/dd/d29/false__position_8cpp.html
+++ b/dd/d29/false__position_8cpp.html
@@ -266,7 +266,7 @@ template<typename T >
diff --git a/dd/d2f/class_trie.html b/dd/d2f/class_trie.html
index 8b5d07584..e7c698dbc 100644
--- a/dd/d2f/class_trie.html
+++ b/dd/d2f/class_trie.html
@@ -405,7 +405,7 @@ False if word is not found in trie or isEndOfWord is set to false.
diff --git a/dd/d3b/struct_entry.html b/dd/d3b/struct_entry.html
index f79116a68..a572bceb5 100644
--- a/dd/d3b/struct_entry.html
+++ b/dd/d3b/struct_entry.html
@@ -128,7 +128,7 @@ int key |
diff --git a/dd/d4f/class_solution.html b/dd/d4f/class_solution.html
index 3d6c213a2..e9b85d99b 100644
--- a/dd/d4f/class_solution.html
+++ b/dd/d4f/class_solution.html
@@ -148,7 +148,7 @@ int timer |
diff --git a/dd/d51/classstack-members.html b/dd/d51/classstack-members.html
index 29b40b269..e0a33d847 100644
--- a/dd/d51/classstack-members.html
+++ b/dd/d51/classstack-members.html
@@ -113,7 +113,7 @@ $(document).ready(function(){initNavTree('d1/dc2/classstack.html','../../'); ini
diff --git a/dd/d65/lu__decompose_8cpp.html b/dd/d65/lu__decompose_8cpp.html
index 8f0fb5aa6..732802a38 100644
--- a/dd/d65/lu__decompose_8cpp.html
+++ b/dd/d65/lu__decompose_8cpp.html
@@ -356,7 +356,7 @@ Here is the call graph for this function:
diff --git a/dd/d7a/classdouble__linked__list-members.html b/dd/d7a/classdouble__linked__list-members.html
index 4fc9f94fb..34003acb0 100644
--- a/dd/d7a/classdouble__linked__list-members.html
+++ b/dd/d7a/classdouble__linked__list-members.html
@@ -108,7 +108,7 @@ $(document).ready(function(){initNavTree('d9/dee/classdouble__linked__list.html'
diff --git a/dd/d91/class_fenwick_tree.html b/dd/d91/class_fenwick_tree.html
index 171a36caf..9c187e291 100644
--- a/dd/d91/class_fenwick_tree.html
+++ b/dd/d91/class_fenwick_tree.html
@@ -401,7 +401,7 @@ Here is the call graph for this function:
diff --git a/dd/d9b/classgraph.html b/dd/d9b/classgraph.html
index 34d14c7ae..026b9e04b 100644
--- a/dd/d9b/classgraph.html
+++ b/dd/d9b/classgraph.html
@@ -164,7 +164,7 @@ int connected_components
diff --git a/dd/da0/todo.html b/dd/da0/todo.html
index 8419fcfe3..519055a09 100644
--- a/dd/da0/todo.html
+++ b/dd/da0/todo.html
@@ -122,7 +122,7 @@ $(document).ready(function(){initNavTree('dd/da0/todo.html','../../'); initResiz
diff --git a/dd/da8/struct_segment_intersection-members.html b/dd/da8/struct_segment_intersection-members.html
index 61f881090..7c241b11e 100644
--- a/dd/da8/struct_segment_intersection-members.html
+++ b/dd/da8/struct_segment_intersection-members.html
@@ -105,7 +105,7 @@ $(document).ready(function(){initNavTree('d4/db4/struct_segment_intersection.htm
diff --git a/dd/df4/structlca.html b/dd/df4/structlca.html
index b12355374..f71e80dcf 100644
--- a/dd/df4/structlca.html
+++ b/dd/df4/structlca.html
@@ -147,7 +147,7 @@ int | level [N] |
diff --git a/de/d29/class_fenwick_tree-members.html b/de/d29/class_fenwick_tree-members.html
index 02045c082..a8c3af794 100644
--- a/de/d29/class_fenwick_tree-members.html
+++ b/de/d29/class_fenwick_tree-members.html
@@ -110,7 +110,7 @@ $(document).ready(function(){initNavTree('dd/d91/class_fenwick_tree.html','../..
diff --git a/de/d47/string__fibonacci_8cpp.html b/de/d47/string__fibonacci_8cpp.html
index f94adfa9c..56c7361d7 100644
--- a/de/d47/string__fibonacci_8cpp.html
+++ b/de/d47/string__fibonacci_8cpp.html
@@ -286,7 +286,7 @@ Here is the call graph for this function:
diff --git a/de/d48/struct_trie_1_1_trie_node.html b/de/d48/struct_trie_1_1_trie_node.html
index 1a5287cd8..f9c59b51b 100644
--- a/de/d48/struct_trie_1_1_trie_node.html
+++ b/de/d48/struct_trie_1_1_trie_node.html
@@ -124,7 +124,7 @@ bool isEndOfWord {fals
diff --git a/de/d6a/knuth__morris__pratt_8cpp.html b/de/d6a/knuth__morris__pratt_8cpp.html
index 38fe65602..19d65b181 100644
--- a/de/d6a/knuth__morris__pratt_8cpp.html
+++ b/de/d6a/knuth__morris__pratt_8cpp.html
@@ -186,7 +186,7 @@ Here is the call graph for this function:
diff --git a/de/d75/qr__eigen__values_8cpp.html b/de/d75/qr__eigen__values_8cpp.html
index b5080e8c7..ec12b8aed 100644
--- a/de/d75/qr__eigen__values_8cpp.html
+++ b/de/d75/qr__eigen__values_8cpp.html
@@ -476,7 +476,7 @@ Here is the call graph for this function:
diff --git a/de/d7c/struct_trie_1_1_trie_node-members.html b/de/d7c/struct_trie_1_1_trie_node-members.html
index 86f7ebeb8..dd83c307d 100644
--- a/de/d7c/struct_trie_1_1_trie_node-members.html
+++ b/de/d7c/struct_trie_1_1_trie_node-members.html
@@ -104,7 +104,7 @@ $(document).ready(function(){initNavTree('de/d48/struct_trie_1_1_trie_node.html'
diff --git a/de/d85/decimal__to__roman__numeral_8cpp.html b/de/d85/decimal__to__roman__numeral_8cpp.html
index a39603c65..dc433ef83 100644
--- a/de/d85/decimal__to__roman__numeral_8cpp.html
+++ b/de/d85/decimal__to__roman__numeral_8cpp.html
@@ -313,7 +313,7 @@ Here is the call graph for this function:
diff --git a/de/d8a/class_trie-members.html b/de/d8a/class_trie-members.html
index c06678a51..efad63215 100644
--- a/de/d8a/class_trie-members.html
+++ b/de/d8a/class_trie-members.html
@@ -110,7 +110,7 @@ $(document).ready(function(){initNavTree('dd/d2f/class_trie.html','../../'); ini
diff --git a/de/d91/class_queue___array-members.html b/de/d91/class_queue___array-members.html
index c26ae6287..2dc014697 100644
--- a/de/d91/class_queue___array-members.html
+++ b/de/d91/class_queue___array-members.html
@@ -110,7 +110,7 @@ $(document).ready(function(){initNavTree('d0/dd2/class_queue___array.html','../.
diff --git a/de/d91/structlist-members.html b/de/d91/structlist-members.html
index 29899ffb2..b4e85c294 100644
--- a/de/d91/structlist-members.html
+++ b/de/d91/structlist-members.html
@@ -114,7 +114,7 @@ $(document).ready(function(){initNavTree('d8/d10/structlist.html','../../'); ini
diff --git a/de/d9b/prime__numbers_8cpp.html b/de/d9b/prime__numbers_8cpp.html
index fd0b6d834..a6f74dd50 100644
--- a/de/d9b/prime__numbers_8cpp.html
+++ b/de/d9b/prime__numbers_8cpp.html
@@ -202,7 +202,7 @@ Here is the call graph for this function:
diff --git a/de/db5/class_edge-members.html b/de/db5/class_edge-members.html
index 6f51b48ae..f6b45d3ce 100644
--- a/de/db5/class_edge-members.html
+++ b/de/db5/class_edge-members.html
@@ -114,7 +114,7 @@ $(document).ready(function(){initNavTree('d7/d77/class_edge.html','../../'); ini
diff --git a/de/dc3/binaryheap_8cpp.html b/de/dc3/binaryheap_8cpp.html
index 8a3c6be6b..a6acde565 100644
--- a/de/dc3/binaryheap_8cpp.html
+++ b/de/dc3/binaryheap_8cpp.html
@@ -129,7 +129,7 @@ int | main () |
diff --git a/de/dc8/classlarge__number-members.html b/de/dc8/classlarge__number-members.html
index 76c6f5d19..11157c835 100644
--- a/de/dc8/classlarge__number-members.html
+++ b/de/dc8/classlarge__number-members.html
@@ -99,14 +99,14 @@ $(document).ready(function(){initNavTree('db/d82/classlarge__number.html','../..
| _digits | large_number | private |
| add_digit(unsigned int value) | large_number | inline |
- | digit_char(size_t i) const | large_number | inline |
+ | digit_char(size_t i) const | large_number | inline |
| large_number() | large_number | inline |
| large_number(int n) | large_number | inlineexplicit |
| large_number(const large_number &a) | large_number | inline |
| large_number(std::vector< unsigned char > &vec) | large_number | inlineexplicit |
| large_number(char const *number_str) (defined in large_number) | large_number | inlineexplicit |
| multiply(const T n) | large_number | inlineprivate |
- | num_digits() const | large_number | inline |
+ | num_digits() const | large_number | inline |
| operator!=(large_number const &a, large_number const &b) | large_number | friend |
| operator*=(const T n) | large_number | inline |
| operator+(const large_number &a, const T &b) | large_number | friend |
@@ -125,7 +125,7 @@ $(document).ready(function(){initNavTree('db/d82/classlarge__number.html','../..
diff --git a/de/dcf/binary__exponent_8cpp.html b/de/dcf/binary__exponent_8cpp.html
index 0f9063caa..582103a03 100644
--- a/de/dcf/binary__exponent_8cpp.html
+++ b/de/dcf/binary__exponent_8cpp.html
@@ -256,7 +256,7 @@ Functions
diff --git a/de/dd3/newton__raphson__method_8cpp.html b/de/dd3/newton__raphson__method_8cpp.html
index 00672bf20..38f28ca43 100644
--- a/de/dd3/newton__raphson__method_8cpp.html
+++ b/de/dd3/newton__raphson__method_8cpp.html
@@ -278,7 +278,7 @@ Here is the call graph for this function:
diff --git a/de/de4/fibonacci__large_8cpp.html b/de/de4/fibonacci__large_8cpp.html
index 21996d7c5..3ee5fb589 100644
--- a/de/de4/fibonacci__large_8cpp.html
+++ b/de/de4/fibonacci__large_8cpp.html
@@ -166,7 +166,7 @@ int main (int argc, ch
diff --git a/df/d06/decimal__to__binary_8cpp.html b/df/d06/decimal__to__binary_8cpp.html
index 382297308..5cc083926 100644
--- a/df/d06/decimal__to__binary_8cpp.html
+++ b/df/d06/decimal__to__binary_8cpp.html
@@ -208,7 +208,7 @@ Here is the call graph for this function:
diff --git a/df/d39/interpolation__search2_8cpp.html b/df/d39/interpolation__search2_8cpp.html
index 8fcc7e44e..a7fb27e1e 100644
--- a/df/d39/interpolation__search2_8cpp.html
+++ b/df/d39/interpolation__search2_8cpp.html
@@ -222,7 +222,7 @@ Here is the call graph for this function:
diff --git a/df/dc8/successive__approximation_8cpp.html b/df/dc8/successive__approximation_8cpp.html
index 724b86d74..6b1965e0a 100644
--- a/df/dc8/successive__approximation_8cpp.html
+++ b/df/dc8/successive__approximation_8cpp.html
@@ -237,7 +237,7 @@ Here is the call graph for this function:
diff --git a/df/dd5/binary__search_8cpp.html b/df/dd5/binary__search_8cpp.html
index f4620aaf5..e774c25bd 100644
--- a/df/dd5/binary__search_8cpp.html
+++ b/df/dd5/binary__search_8cpp.html
@@ -248,7 +248,7 @@ Here is the call graph for this function:
diff --git a/df/dd7/structlinkedlist-members.html b/df/dd7/structlinkedlist-members.html
index 89da10487..7aae58978 100644
--- a/df/dd7/structlinkedlist-members.html
+++ b/df/dd7/structlinkedlist-members.html
@@ -104,7 +104,7 @@ $(document).ready(function(){initNavTree('d0/dff/structlinkedlist.html','../../'
diff --git a/df/def/power__for__huge__numbers_8cpp.html b/df/def/power__for__huge__numbers_8cpp.html
index 13a6ec97d..5fe43b876 100644
--- a/df/def/power__for__huge__numbers_8cpp.html
+++ b/df/def/power__for__huge__numbers_8cpp.html
@@ -318,7 +318,7 @@ Here is the call graph for this function:
diff --git a/dir_074119ce3a874b57120c49a0cc4bb5ad.html b/dir_074119ce3a874b57120c49a0cc4bb5ad.html
index e162c77ea..ffd400845 100644
--- a/dir_074119ce3a874b57120c49a0cc4bb5ad.html
+++ b/dir_074119ce3a874b57120c49a0cc4bb5ad.html
@@ -107,7 +107,7 @@ Files |
diff --git a/dir_0eaa691bd54ab0922ca7f50599de6d22.html b/dir_0eaa691bd54ab0922ca7f50599de6d22.html
index 5452cb406..b2c7c6012 100644
--- a/dir_0eaa691bd54ab0922ca7f50599de6d22.html
+++ b/dir_0eaa691bd54ab0922ca7f50599de6d22.html
@@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('dir_0eaa691bd54ab0922ca7f50599de6d22.h
diff --git a/dir_12552d7fa429bf94a2e32e5cf39f7e69.html b/dir_12552d7fa429bf94a2e32e5cf39f7e69.html
index ee9cd1de8..a2c4ce5ab 100644
--- a/dir_12552d7fa429bf94a2e32e5cf39f7e69.html
+++ b/dir_12552d7fa429bf94a2e32e5cf39f7e69.html
@@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('dir_12552d7fa429bf94a2e32e5cf39f7e69.h
diff --git a/dir_19b2bf9199a15c634a08b1ede1dd896a.html b/dir_19b2bf9199a15c634a08b1ede1dd896a.html
index 2d9d97d7d..286eaece1 100644
--- a/dir_19b2bf9199a15c634a08b1ede1dd896a.html
+++ b/dir_19b2bf9199a15c634a08b1ede1dd896a.html
@@ -134,7 +134,7 @@ Files
diff --git a/dir_296d53ceaeaa7e099814a6def439fe8a.html b/dir_296d53ceaeaa7e099814a6def439fe8a.html
index 536b8a27e..6cc74ec3c 100644
--- a/dir_296d53ceaeaa7e099814a6def439fe8a.html
+++ b/dir_296d53ceaeaa7e099814a6def439fe8a.html
@@ -186,7 +186,7 @@ Files
diff --git a/dir_2e746e9d06bf2d8ff842208bcc6ebcfc.html b/dir_2e746e9d06bf2d8ff842208bcc6ebcfc.html
index aaa589cd9..fc4bb9bbc 100644
--- a/dir_2e746e9d06bf2d8ff842208bcc6ebcfc.html
+++ b/dir_2e746e9d06bf2d8ff842208bcc6ebcfc.html
@@ -122,7 +122,7 @@ Files
diff --git a/dir_3343723ae086de42ee4ca9774da3a13f.html b/dir_3343723ae086de42ee4ca9774da3a13f.html
index ec72ee44f..7486f70c0 100644
--- a/dir_3343723ae086de42ee4ca9774da3a13f.html
+++ b/dir_3343723ae086de42ee4ca9774da3a13f.html
@@ -113,7 +113,7 @@ Files
diff --git a/dir_35422be6552f1b3672c1b6c4aba2da64.html b/dir_35422be6552f1b3672c1b6c4aba2da64.html
index e54604423..3e497f0d0 100644
--- a/dir_35422be6552f1b3672c1b6c4aba2da64.html
+++ b/dir_35422be6552f1b3672c1b6c4aba2da64.html
@@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('dir_35422be6552f1b3672c1b6c4aba2da64.h
diff --git a/dir_73a3cc5065b223eb41b02873c0e19f0e.html b/dir_73a3cc5065b223eb41b02873c0e19f0e.html
index ffe419eea..9c62c924f 100644
--- a/dir_73a3cc5065b223eb41b02873c0e19f0e.html
+++ b/dir_73a3cc5065b223eb41b02873c0e19f0e.html
@@ -113,7 +113,7 @@ Files
diff --git a/dir_82e494173a87936756866de2fa774307.html b/dir_82e494173a87936756866de2fa774307.html
index aadf8f09f..cbf7faf0b 100644
--- a/dir_82e494173a87936756866de2fa774307.html
+++ b/dir_82e494173a87936756866de2fa774307.html
@@ -116,7 +116,7 @@ Files
diff --git a/dir_8a20dd5bfd5341a725342bf72b6b686f.html b/dir_8a20dd5bfd5341a725342bf72b6b686f.html
index 6e24ab08b..e88a3cb0e 100644
--- a/dir_8a20dd5bfd5341a725342bf72b6b686f.html
+++ b/dir_8a20dd5bfd5341a725342bf72b6b686f.html
@@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('dir_8a20dd5bfd5341a725342bf72b6b686f.h
diff --git a/dir_9510827d0b234b3cc54b29892f217477.html b/dir_9510827d0b234b3cc54b29892f217477.html
index 6c4bb925f..4f7e905ec 100644
--- a/dir_9510827d0b234b3cc54b29892f217477.html
+++ b/dir_9510827d0b234b3cc54b29892f217477.html
@@ -154,7 +154,7 @@ Files
diff --git a/dir_9c6faab82c22511b50177aa2e38e2780.html b/dir_9c6faab82c22511b50177aa2e38e2780.html
index e52e874d2..5874e4df7 100644
--- a/dir_9c6faab82c22511b50177aa2e38e2780.html
+++ b/dir_9c6faab82c22511b50177aa2e38e2780.html
@@ -152,7 +152,7 @@ Files
diff --git a/dir_bb1b521853a9c46347182a9d10420771.html b/dir_bb1b521853a9c46347182a9d10420771.html
index 63db4a348..c9fef95d5 100644
--- a/dir_bb1b521853a9c46347182a9d10420771.html
+++ b/dir_bb1b521853a9c46347182a9d10420771.html
@@ -121,7 +121,7 @@ Files
diff --git a/dir_c11585dfcef32a26e29098facab6c144.html b/dir_c11585dfcef32a26e29098facab6c144.html
index 0be57f50c..b98195ace 100644
--- a/dir_c11585dfcef32a26e29098facab6c144.html
+++ b/dir_c11585dfcef32a26e29098facab6c144.html
@@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('dir_c11585dfcef32a26e29098facab6c144.h
diff --git a/dir_e3380d2178455503f266746fb14246a5.html b/dir_e3380d2178455503f266746fb14246a5.html
index 604725605..9487d5afc 100644
--- a/dir_e3380d2178455503f266746fb14246a5.html
+++ b/dir_e3380d2178455503f266746fb14246a5.html
@@ -107,7 +107,7 @@ Files
diff --git a/dir_ece9b94c107bbaa1dd68197a8c9983b9.html b/dir_ece9b94c107bbaa1dd68197a8c9983b9.html
index 414c61ac0..c2c315e24 100644
--- a/dir_ece9b94c107bbaa1dd68197a8c9983b9.html
+++ b/dir_ece9b94c107bbaa1dd68197a8c9983b9.html
@@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('dir_ece9b94c107bbaa1dd68197a8c9983b9.h
diff --git a/dir_f1797d0c2a0a12033e7d74efffeb14e1.html b/dir_f1797d0c2a0a12033e7d74efffeb14e1.html
index ad6d43987..63a310403 100644
--- a/dir_f1797d0c2a0a12033e7d74efffeb14e1.html
+++ b/dir_f1797d0c2a0a12033e7d74efffeb14e1.html
@@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('dir_f1797d0c2a0a12033e7d74efffeb14e1.h
diff --git a/files.html b/files.html
index 398846c46..ac4d90693 100644
--- a/files.html
+++ b/files.html
@@ -212,7 +212,7 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); });
diff --git a/functions.html b/functions.html
index 5dfed07b7..5aff811d9 100644
--- a/functions.html
+++ b/functions.html
@@ -143,7 +143,7 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable();
: queue< Kind >
digit_char()
-: large_number
+: large_number
direction()
: SegmentIntersection
@@ -281,7 +281,7 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable();
: list
num_digits()
-: large_number
+: large_number
@@ -457,7 +457,7 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable();
diff --git a/functions_func.html b/functions_func.html
index d05c74743..1c169943c 100644
--- a/functions_func.html
+++ b/functions_func.html
@@ -130,7 +130,7 @@ $(document).ready(function(){initNavTree('functions_func.html',''); initResizabl
: queue< Kind >
digit_char()
-: large_number
+: large_number
direction()
: SegmentIntersection
@@ -249,7 +249,7 @@ $(document).ready(function(){initNavTree('functions_func.html',''); initResizabl
, statistics::stats_computer2< T >
num_digits()
-: large_number
+: large_number
@@ -374,7 +374,7 @@ $(document).ready(function(){initNavTree('functions_func.html',''); initResizabl
diff --git a/functions_rela.html b/functions_rela.html
index 6631620ca..e594b4711 100644
--- a/functions_rela.html
+++ b/functions_rela.html
@@ -114,7 +114,7 @@ $(document).ready(function(){initNavTree('functions_rela.html',''); initResizabl
diff --git a/functions_vars.html b/functions_vars.html
index 174af5588..ca7c0290f 100644
--- a/functions_vars.html
+++ b/functions_vars.html
@@ -145,7 +145,7 @@ $(document).ready(function(){initNavTree('functions_vars.html',''); initResizabl
diff --git a/globals.html b/globals.html
index e4c74a0db..010fef41c 100644
--- a/globals.html
+++ b/globals.html
@@ -108,7 +108,7 @@ $(document).ready(function(){initNavTree('globals.html',''); initResizable(); })
diff --git a/globals_a.html b/globals_a.html
index e70d4ebe4..d7e41f4e4 100644
--- a/globals_a.html
+++ b/globals_a.html
@@ -126,7 +126,7 @@ $(document).ready(function(){initNavTree('globals_a.html',''); initResizable();
diff --git a/globals_b.html b/globals_b.html
index 25c542bf5..7c335dfb8 100644
--- a/globals_b.html
+++ b/globals_b.html
@@ -133,7 +133,7 @@ $(document).ready(function(){initNavTree('globals_b.html',''); initResizable();
diff --git a/globals_c.html b/globals_c.html
index fd18219ff..8d9020a77 100644
--- a/globals_c.html
+++ b/globals_c.html
@@ -123,7 +123,7 @@ $(document).ready(function(){initNavTree('globals_c.html',''); initResizable();
diff --git a/globals_d.html b/globals_d.html
index 314f2ffd6..782137d0a 100644
--- a/globals_d.html
+++ b/globals_d.html
@@ -114,7 +114,7 @@ $(document).ready(function(){initNavTree('globals_d.html',''); initResizable();
diff --git a/globals_defs.html b/globals_defs.html
index 566369111..cf4ad12ad 100644
--- a/globals_defs.html
+++ b/globals_defs.html
@@ -150,7 +150,7 @@ $(document).ready(function(){initNavTree('globals_defs.html',''); initResizable(
diff --git a/globals_e.html b/globals_e.html
index 336e874a1..21fde89a4 100644
--- a/globals_e.html
+++ b/globals_e.html
@@ -130,7 +130,7 @@ $(document).ready(function(){initNavTree('globals_e.html',''); initResizable();
diff --git a/globals_f.html b/globals_f.html
index 5f7656142..fc45085d3 100644
--- a/globals_f.html
+++ b/globals_f.html
@@ -145,7 +145,7 @@ $(document).ready(function(){initNavTree('globals_f.html',''); initResizable();
diff --git a/globals_func.html b/globals_func.html
index 33a3572c8..6478d0871 100644
--- a/globals_func.html
+++ b/globals_func.html
@@ -102,7 +102,7 @@ $(document).ready(function(){initNavTree('globals_func.html',''); initResizable(
diff --git a/globals_func_a.html b/globals_func_a.html
index 48474e157..c31c7980d 100644
--- a/globals_func_a.html
+++ b/globals_func_a.html
@@ -114,7 +114,7 @@ $(document).ready(function(){initNavTree('globals_func_a.html',''); initResizabl
diff --git a/globals_func_b.html b/globals_func_b.html
index b3732f855..0bd7b224b 100644
--- a/globals_func_b.html
+++ b/globals_func_b.html
@@ -133,7 +133,7 @@ $(document).ready(function(){initNavTree('globals_func_b.html',''); initResizabl
diff --git a/globals_func_c.html b/globals_func_c.html
index 9e6795822..19f365396 100644
--- a/globals_func_c.html
+++ b/globals_func_c.html
@@ -123,7 +123,7 @@ $(document).ready(function(){initNavTree('globals_func_c.html',''); initResizabl
diff --git a/globals_func_d.html b/globals_func_d.html
index 299f010ce..38e1b37ca 100644
--- a/globals_func_d.html
+++ b/globals_func_d.html
@@ -111,7 +111,7 @@ $(document).ready(function(){initNavTree('globals_func_d.html',''); initResizabl
diff --git a/globals_func_e.html b/globals_func_e.html
index 5a1209d8c..7d5e63327 100644
--- a/globals_func_e.html
+++ b/globals_func_e.html
@@ -122,7 +122,7 @@ $(document).ready(function(){initNavTree('globals_func_e.html',''); initResizabl
diff --git a/globals_func_f.html b/globals_func_f.html
index 34dc54966..49f8bb59a 100644
--- a/globals_func_f.html
+++ b/globals_func_f.html
@@ -139,7 +139,7 @@ $(document).ready(function(){initNavTree('globals_func_f.html',''); initResizabl
diff --git a/globals_func_g.html b/globals_func_g.html
index 854e98923..71f7ed108 100644
--- a/globals_func_g.html
+++ b/globals_func_g.html
@@ -134,7 +134,7 @@ $(document).ready(function(){initNavTree('globals_func_g.html',''); initResizabl
diff --git a/globals_func_h.html b/globals_func_h.html
index 5c6a6e0fc..e1a98a62a 100644
--- a/globals_func_h.html
+++ b/globals_func_h.html
@@ -111,7 +111,7 @@ $(document).ready(function(){initNavTree('globals_func_h.html',''); initResizabl
diff --git a/globals_func_i.html b/globals_func_i.html
index 5a4eaebf9..4a39d1a24 100644
--- a/globals_func_i.html
+++ b/globals_func_i.html
@@ -132,7 +132,7 @@ $(document).ready(function(){initNavTree('globals_func_i.html',''); initResizabl
diff --git a/globals_func_j.html b/globals_func_j.html
index 63f2b124f..79d59153c 100644
--- a/globals_func_j.html
+++ b/globals_func_j.html
@@ -102,7 +102,7 @@ $(document).ready(function(){initNavTree('globals_func_j.html',''); initResizabl
diff --git a/globals_func_l.html b/globals_func_l.html
index 610acdab7..7648f9318 100644
--- a/globals_func_l.html
+++ b/globals_func_l.html
@@ -117,7 +117,7 @@ $(document).ready(function(){initNavTree('globals_func_l.html',''); initResizabl
diff --git a/globals_func_m.html b/globals_func_m.html
index 2be4ca3af..da2a83556 100644
--- a/globals_func_m.html
+++ b/globals_func_m.html
@@ -224,7 +224,7 @@ $(document).ready(function(){initNavTree('globals_func_m.html',''); initResizabl
diff --git a/globals_func_n.html b/globals_func_n.html
index 11dacf062..3f1d14661 100644
--- a/globals_func_n.html
+++ b/globals_func_n.html
@@ -105,7 +105,7 @@ $(document).ready(function(){initNavTree('globals_func_n.html',''); initResizabl
diff --git a/globals_func_o.html b/globals_func_o.html
index e4c11a8bd..3f4314da7 100644
--- a/globals_func_o.html
+++ b/globals_func_o.html
@@ -118,7 +118,7 @@ $(document).ready(function(){initNavTree('globals_func_o.html',''); initResizabl
diff --git a/globals_func_p.html b/globals_func_p.html
index 8787b9c50..5bf4abd52 100644
--- a/globals_func_p.html
+++ b/globals_func_p.html
@@ -153,7 +153,7 @@ $(document).ready(function(){initNavTree('globals_func_p.html',''); initResizabl
diff --git a/globals_func_r.html b/globals_func_r.html
index 4d84d9e2a..244d70c16 100644
--- a/globals_func_r.html
+++ b/globals_func_r.html
@@ -108,7 +108,7 @@ $(document).ready(function(){initNavTree('globals_func_r.html',''); initResizabl
diff --git a/globals_func_s.html b/globals_func_s.html
index 74b19d72e..b10573754 100644
--- a/globals_func_s.html
+++ b/globals_func_s.html
@@ -151,7 +151,7 @@ $(document).ready(function(){initNavTree('globals_func_s.html',''); initResizabl
diff --git a/globals_func_t.html b/globals_func_t.html
index 288d8119c..265c0fa95 100644
--- a/globals_func_t.html
+++ b/globals_func_t.html
@@ -181,7 +181,7 @@ $(document).ready(function(){initNavTree('globals_func_t.html',''); initResizabl
diff --git a/globals_func_u.html b/globals_func_u.html
index eaadd2efd..8c29cc6b7 100644
--- a/globals_func_u.html
+++ b/globals_func_u.html
@@ -102,7 +102,7 @@ $(document).ready(function(){initNavTree('globals_func_u.html',''); initResizabl
diff --git a/globals_g.html b/globals_g.html
index bc82152d8..0fe1ab31f 100644
--- a/globals_g.html
+++ b/globals_g.html
@@ -134,7 +134,7 @@ $(document).ready(function(){initNavTree('globals_g.html',''); initResizable();
diff --git a/globals_h.html b/globals_h.html
index 899354af2..56b9dfe49 100644
--- a/globals_h.html
+++ b/globals_h.html
@@ -117,7 +117,7 @@ $(document).ready(function(){initNavTree('globals_h.html',''); initResizable();
diff --git a/globals_i.html b/globals_i.html
index fc297f8a7..198753b9b 100644
--- a/globals_i.html
+++ b/globals_i.html
@@ -138,7 +138,7 @@ $(document).ready(function(){initNavTree('globals_i.html',''); initResizable();
diff --git a/globals_j.html b/globals_j.html
index 02b26a366..fb5263859 100644
--- a/globals_j.html
+++ b/globals_j.html
@@ -102,7 +102,7 @@ $(document).ready(function(){initNavTree('globals_j.html',''); initResizable();
diff --git a/globals_k.html b/globals_k.html
index 6f0c4002f..b34721f46 100644
--- a/globals_k.html
+++ b/globals_k.html
@@ -102,7 +102,7 @@ $(document).ready(function(){initNavTree('globals_k.html',''); initResizable();
diff --git a/globals_l.html b/globals_l.html
index 1ca800396..20bf29475 100644
--- a/globals_l.html
+++ b/globals_l.html
@@ -126,7 +126,7 @@ $(document).ready(function(){initNavTree('globals_l.html',''); initResizable();
diff --git a/globals_m.html b/globals_m.html
index caf000bf3..3eaa9b638 100644
--- a/globals_m.html
+++ b/globals_m.html
@@ -243,7 +243,7 @@ $(document).ready(function(){initNavTree('globals_m.html',''); initResizable();
diff --git a/globals_n.html b/globals_n.html
index 8cfe780cc..e899b70f5 100644
--- a/globals_n.html
+++ b/globals_n.html
@@ -108,7 +108,7 @@ $(document).ready(function(){initNavTree('globals_n.html',''); initResizable();
diff --git a/globals_o.html b/globals_o.html
index e56dfe0a5..81a529fe7 100644
--- a/globals_o.html
+++ b/globals_o.html
@@ -118,7 +118,7 @@ $(document).ready(function(){initNavTree('globals_o.html',''); initResizable();
diff --git a/globals_p.html b/globals_p.html
index e291f0766..0ce39423c 100644
--- a/globals_p.html
+++ b/globals_p.html
@@ -165,7 +165,7 @@ $(document).ready(function(){initNavTree('globals_p.html',''); initResizable();
diff --git a/globals_r.html b/globals_r.html
index 5784851ba..97bf08d31 100644
--- a/globals_r.html
+++ b/globals_r.html
@@ -108,7 +108,7 @@ $(document).ready(function(){initNavTree('globals_r.html',''); initResizable();
diff --git a/globals_s.html b/globals_s.html
index 82bfa24cd..02f299d30 100644
--- a/globals_s.html
+++ b/globals_s.html
@@ -154,7 +154,7 @@ $(document).ready(function(){initNavTree('globals_s.html',''); initResizable();
diff --git a/globals_t.html b/globals_t.html
index fc821f012..b2161dfe1 100644
--- a/globals_t.html
+++ b/globals_t.html
@@ -187,7 +187,7 @@ $(document).ready(function(){initNavTree('globals_t.html',''); initResizable();
diff --git a/globals_type.html b/globals_type.html
index 88f04e5fb..aaca0a8ab 100644
--- a/globals_type.html
+++ b/globals_type.html
@@ -103,7 +103,7 @@ $(document).ready(function(){initNavTree('globals_type.html',''); initResizable(
diff --git a/globals_u.html b/globals_u.html
index 66dd6cd67..1ff1a7f6d 100644
--- a/globals_u.html
+++ b/globals_u.html
@@ -102,7 +102,7 @@ $(document).ready(function(){initNavTree('globals_u.html',''); initResizable();
diff --git a/globals_vars.html b/globals_vars.html
index 254b3671f..29cd1cd95 100644
--- a/globals_vars.html
+++ b/globals_vars.html
@@ -140,7 +140,7 @@ $(document).ready(function(){initNavTree('globals_vars.html',''); initResizable(
diff --git a/graph_legend.html b/graph_legend.html
index 80b741117..717b3101e 100644
--- a/graph_legend.html
+++ b/graph_legend.html
@@ -159,7 +159,7 @@ A yellow dashed arrow denotes a relation between a template instance and the tem
diff --git a/index.html b/index.html
index 24981e44d..ce23f6eca 100644
--- a/index.html
+++ b/index.html
@@ -109,7 +109,7 @@ Contribute Guidelines
diff --git a/modules.html b/modules.html
index 61ae72bf6..0610101b5 100644
--- a/modules.html
+++ b/modules.html
@@ -106,7 +106,7 @@ $(document).ready(function(){initNavTree('modules.html',''); initResizable(); })
diff --git a/namespacemembers.html b/namespacemembers.html
index 1381fd926..4322b26df 100644
--- a/namespacemembers.html
+++ b/namespacemembers.html
@@ -163,7 +163,7 @@ $(document).ready(function(){initNavTree('namespacemembers.html',''); initResiza
diff --git a/namespacemembers_func.html b/namespacemembers_func.html
index 64e332482..bc0c0f8fe 100644
--- a/namespacemembers_func.html
+++ b/namespacemembers_func.html
@@ -163,7 +163,7 @@ $(document).ready(function(){initNavTree('namespacemembers_func.html',''); initR
diff --git a/namespaces.html b/namespaces.html
index 2ca28f7d5..5fdd75b3a 100644
--- a/namespaces.html
+++ b/namespaces.html
@@ -109,7 +109,7 @@ $(document).ready(function(){initNavTree('namespaces.html',''); initResizable();
diff --git a/navtreeindex2.js b/navtreeindex2.js
index aca948002..98c24dab7 100644
--- a/navtreeindex2.js
+++ b/navtreeindex2.js
@@ -186,7 +186,6 @@ var NAVTREEINDEX2 =
"db/d82/classlarge__number.html":[7,0,13],
"db/d82/classlarge__number.html#a0b1efd203274e38a67b78937dfb9b872":[7,0,13,2],
"db/d82/classlarge__number.html#a10119a83839e65962621b73df46a5337":[7,0,13,0],
-"db/d82/classlarge__number.html#a2305a82e7b372617419337b2d2119c7d":[7,0,13,8],
"db/d82/classlarge__number.html#a2f5571e66305cf68bb8283e4aeda58bc":[7,0,13,7],
"db/d82/classlarge__number.html#a60c436d1a1c5e3795d6177d3815ad615":[7,0,13,5],
"db/d82/classlarge__number.html#a622d84883180ff42f04955909adea5a9":[7,0,13,10],
@@ -199,14 +198,15 @@ var NAVTREEINDEX2 =
"db/d82/classlarge__number.html#aad394466f3207b21b5d3e994b3a8ed72":[7,0,13,12],
"db/d82/classlarge__number.html#ab1af3e0f425cdf7ea2039c9dcfe22f0b":[7,0,13,9],
"db/d82/classlarge__number.html#ab53e3d0d72a547243a6e995e918ba87c":[7,0,13,16],
+"db/d82/classlarge__number.html#ac09a05ec4aafb4d9e0b4440d6f0e2a93":[7,0,13,8],
"db/d82/classlarge__number.html#ac27b399ed872731758ec33ebb102730e":[7,0,13,13],
"db/d82/classlarge__number.html#ac4fafa6289295419d48d444f0ae4b706":[7,0,13,11],
"db/d82/classlarge__number.html#ace19126cf343a09efc0010735f6e3a8d":[7,0,13,15],
"db/d82/classlarge__number.html#adf804e60309bf016f7954fdcb0a4d103":[7,0,13,4],
+"db/d82/classlarge__number.html#ae35a55607cf52c0b0d485f2129bd39ac":[7,0,13,6],
"db/d82/classlarge__number.html#aeb22d2aae39d1b1e0bd39c7f47b333eb":[7,0,13,14],
"db/d82/classlarge__number.html#af2b3ec9c35842d3a46ac7326f268af57":[7,0,13,22],
"db/d82/classlarge__number.html#af4598f1f2794b5e17e10c25e0501e41a":[7,0,13,1],
-"db/d82/classlarge__number.html#af530d90830d385c76973658ff3214f98":[7,0,13,6],
"db/d8b/struct_node.html":[7,0,20],
"db/d8b/struct_node.html#a2559a716f69ccaa76d648d9f1b83065e":[7,0,20,2],
"db/d8b/struct_node.html#a66af34de5f6c4d108abd948f341e6470":[7,0,20,0],
diff --git a/navtreeindex3.js b/navtreeindex3.js
index d29ccd35e..a6c640094 100644
--- a/navtreeindex3.js
+++ b/navtreeindex3.js
@@ -211,8 +211,8 @@ var NAVTREEINDEX3 =
"globals_type.html":[8,1,3],
"globals_u.html":[8,1,0,20],
"globals_vars.html":[8,1,2],
-"index.html":[0],
"index.html":[],
+"index.html":[0],
"index.html#autotoc_md33":[0],
"index.html#autotoc_md34":[1],
"modules.html":[5],
diff --git a/pages.html b/pages.html
index 04e952f3a..639d1724d 100644
--- a/pages.html
+++ b/pages.html
@@ -107,7 +107,7 @@ $(document).ready(function(){initNavTree('pages.html',''); initResizable(); });
diff --git a/search/all_4.js b/search/all_4.js
index 9a78090b5..9c6c29497 100644
--- a/search/all_4.js
+++ b/search/all_4.js
@@ -29,7 +29,7 @@ var searchData=
['destroy_291',['destroy',['http://en.cppreference.com/w/cpp/memory/allocator_traits/destroy.html',0,'std::allocator_traits::destroy()'],['http://en.cppreference.com/w/cpp/memory/allocator/destroy.html',0,'std::allocator::destroy()'],['http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/destroy.html',0,'std::scoped_allocator_adaptor::destroy()']]],
['detach_292',['detach',['http://en.cppreference.com/w/cpp/thread/thread/detach.html',0,'std::thread']]],
['difftime_293',['difftime',['http://en.cppreference.com/w/cpp/chrono/c/difftime.html',0,'std']]],
- ['digit_5fchar_294',['digit_char',['../db/d82/classlarge__number.html#af530d90830d385c76973658ff3214f98',1,'large_number']]],
+ ['digit_5fchar_294',['digit_char',['../db/d82/classlarge__number.html#ae35a55607cf52c0b0d485f2129bd39ac',1,'large_number']]],
['direction_295',['direction',['../d4/db4/struct_segment_intersection.html#a3beb2ac1b35d67354f1dbaf9a971e655',1,'SegmentIntersection']]],
['discard_296',['discard',['http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/discard.html',0,'std::mt19937_64::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/discard.html',0,'std::ranlux24_base::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/discard.html',0,'std::ranlux48::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/discard.html',0,'std::discard_block_engine::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/discard.html',0,'std::mersenne_twister_engine::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/discard.html',0,'std::independent_bits_engine::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/discard.html',0,'std::minstd_rand::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/discard.html',0,'std::ranlux48_base::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/discard.html',0,'std::mt19937::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/discard.html',0,'std::shuffle_order_engine::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/discard.html',0,'std::ranlux24::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/discard.html',0,'std::linear_congruential_engine::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/discard.html',0,'std::knuth_b::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/discard.html',0,'std::minstd_rand0::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/discard.html',0,'std::subtract_with_carry_engine::discard()']]],
['discard_5fblock_5fengine_297',['discard_block_engine',['http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine.html',0,'std::discard_block_engine'],['http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/discard_block_engine.html',0,'std::discard_block_engine::discard_block_engine()']]],
diff --git a/search/all_e.js b/search/all_e.js
index fd2eaee3d..82615ce7e 100644
--- a/search/all_e.js
+++ b/search/all_e.js
@@ -49,7 +49,7 @@ var searchData=
['now_1018',['now',['http://en.cppreference.com/w/cpp/chrono/steady_clock/now.html',0,'std::chrono::steady_clock::now()'],['http://en.cppreference.com/w/cpp/chrono/system_clock/now.html',0,'std::chrono::system_clock::now()'],['http://en.cppreference.com/w/cpp/chrono/high_resolution_clock/now.html',0,'std::chrono::high_resolution_clock::now()']]],
['nth_5felement_1019',['nth_element',['http://en.cppreference.com/w/cpp/algorithm/nth_element.html',0,'std']]],
['nullptr_5ft_1020',['nullptr_t',['http://en.cppreference.com/w/cpp/types/nullptr_t.html',0,'std']]],
- ['num_5fdigits_1021',['num_digits',['../db/d82/classlarge__number.html#a2305a82e7b372617419337b2d2119c7d',1,'large_number']]],
+ ['num_5fdigits_1021',['num_digits',['../db/d82/classlarge__number.html#ac09a05ec4aafb4d9e0b4440d6f0e2a93',1,'large_number']]],
['num_5fget_1022',['num_get',['http://en.cppreference.com/w/cpp/locale/num_get.html',0,'std::num_get'],['http://en.cppreference.com/w/cpp/locale/num_get/num_get.html',0,'std::num_get::num_get()']]],
['num_5fput_1023',['num_put',['http://en.cppreference.com/w/cpp/locale/num_put.html',0,'std::num_put'],['http://en.cppreference.com/w/cpp/locale/num_put/num_put.html',0,'std::num_put::num_put()']]],
['number_5fof_5fpositive_5fdivisors_1024',['number_of_positive_divisors',['../d0/da2/number__of__positive__divisors_8cpp.html#ad89ccced8504b5116046cfa03066ffeb',1,'number_of_positive_divisors.cpp']]],
diff --git a/search/functions_4.js b/search/functions_4.js
index 877e68216..2c4acbd6f 100644
--- a/search/functions_4.js
+++ b/search/functions_4.js
@@ -21,7 +21,7 @@ var searchData=
['destroy_2722',['destroy',['http://en.cppreference.com/w/cpp/memory/allocator_traits/destroy.html',0,'std::allocator_traits::destroy()'],['http://en.cppreference.com/w/cpp/memory/allocator/destroy.html',0,'std::allocator::destroy()'],['http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/destroy.html',0,'std::scoped_allocator_adaptor::destroy()']]],
['detach_2723',['detach',['http://en.cppreference.com/w/cpp/thread/thread/detach.html',0,'std::thread']]],
['difftime_2724',['difftime',['http://en.cppreference.com/w/cpp/chrono/c/difftime.html',0,'std']]],
- ['digit_5fchar_2725',['digit_char',['../db/d82/classlarge__number.html#af530d90830d385c76973658ff3214f98',1,'large_number']]],
+ ['digit_5fchar_2725',['digit_char',['../db/d82/classlarge__number.html#ae35a55607cf52c0b0d485f2129bd39ac',1,'large_number']]],
['direction_2726',['direction',['../d4/db4/struct_segment_intersection.html#a3beb2ac1b35d67354f1dbaf9a971e655',1,'SegmentIntersection']]],
['discard_2727',['discard',['http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/discard.html',0,'std::mt19937_64::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/discard.html',0,'std::ranlux24_base::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/discard.html',0,'std::ranlux48::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/discard.html',0,'std::discard_block_engine::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/discard.html',0,'std::mersenne_twister_engine::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/independent_bits_engine/discard.html',0,'std::independent_bits_engine::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/discard.html',0,'std::minstd_rand::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/discard.html',0,'std::ranlux48_base::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/mersenne_twister_engine/discard.html',0,'std::mt19937::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/discard.html',0,'std::shuffle_order_engine::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/discard.html',0,'std::ranlux24::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/discard.html',0,'std::linear_congruential_engine::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/shuffle_order_engine/discard.html',0,'std::knuth_b::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/linear_congruential_engine/discard.html',0,'std::minstd_rand0::discard()'],['http://en.cppreference.com/w/cpp/numeric/random/subtract_with_carry_engine/discard.html',0,'std::subtract_with_carry_engine::discard()']]],
['discard_5fblock_5fengine_2728',['discard_block_engine',['http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/discard_block_engine.html',0,'std::discard_block_engine']]],
diff --git a/search/functions_e.js b/search/functions_e.js
index bf2dda5da..667a396c3 100644
--- a/search/functions_e.js
+++ b/search/functions_e.js
@@ -39,7 +39,7 @@ var searchData=
['nouppercase_3244',['nouppercase',['http://en.cppreference.com/w/cpp/io/manip/uppercase.html',0,'std']]],
['now_3245',['now',['http://en.cppreference.com/w/cpp/chrono/steady_clock/now.html',0,'std::chrono::steady_clock::now()'],['http://en.cppreference.com/w/cpp/chrono/system_clock/now.html',0,'std::chrono::system_clock::now()'],['http://en.cppreference.com/w/cpp/chrono/high_resolution_clock/now.html',0,'std::chrono::high_resolution_clock::now()']]],
['nth_5felement_3246',['nth_element',['http://en.cppreference.com/w/cpp/algorithm/nth_element.html',0,'std']]],
- ['num_5fdigits_3247',['num_digits',['../db/d82/classlarge__number.html#a2305a82e7b372617419337b2d2119c7d',1,'large_number']]],
+ ['num_5fdigits_3247',['num_digits',['../db/d82/classlarge__number.html#ac09a05ec4aafb4d9e0b4440d6f0e2a93',1,'large_number']]],
['num_5fget_3248',['num_get',['http://en.cppreference.com/w/cpp/locale/num_get/num_get.html',0,'std::num_get']]],
['num_5fput_3249',['num_put',['http://en.cppreference.com/w/cpp/locale/num_put/num_put.html',0,'std::num_put']]],
['number_5fof_5fpositive_5fdivisors_3250',['number_of_positive_divisors',['../d0/da2/number__of__positive__divisors_8cpp.html#ad89ccced8504b5116046cfa03066ffeb',1,'number_of_positive_divisors.cpp']]],
| |