Class representation of a stack.
std::unique_ptr< T[]> stack
Smart pointer to the stack array.
int stackIndex
Index pointing to the top element of the stack.
diff --git a/d8/d96/stack__using__array_8cpp_source.html b/d8/d96/stack__using__array_8cpp_source.html
index aaaba6c73..3f9f6f168 100644
--- a/d8/d96/stack__using__array_8cpp_source.html
+++ b/d8/d96/stack__using__array_8cpp_source.html
@@ -131,7 +131,7 @@ $(function(){initNavTree('d8/d96/stack__using__array_8cpp_source.html','../../',
-
+
diff --git a/da/da3/uint256__t_8hpp_source.html b/da/da3/uint256__t_8hpp_source.html
index 3ece79758..d2143ed81 100644
--- a/da/da3/uint256__t_8hpp_source.html
+++ b/da/da3/uint256__t_8hpp_source.html
@@ -169,7 +169,7 @@ $(function(){initNavTree('da/da3/uint256__t_8hpp_source.html','../../',''); });
73 template <
typename T,
typename =
typename std::enable_if<
74 std::is_integral<T>::value, T>::type>
-
+
diff --git a/db/dbc/tree__234_8cpp_source.html b/db/dbc/tree__234_8cpp_source.html
index 85b71062e..63ded1e5c 100644
--- a/db/dbc/tree__234_8cpp_source.html
+++ b/db/dbc/tree__234_8cpp_source.html
@@ -132,9 +132,9 @@ $(function(){initNavTree('db/dbc/tree__234_8cpp_source.html','../../',''); });
41 explicit Node(int64_t item)
-
-
43 items({{item, 0, 0}}),
-
44 children({{
nullptr,
nullptr,
nullptr,
nullptr}}) {}
+
42 :
items({{item, 0, 0}}),
+
43 children({{
nullptr,
nullptr,
nullptr,
nullptr}}),
+
diff --git a/dd/d40/classdata__structures_1_1tree__234_1_1_node.html b/dd/d40/classdata__structures_1_1tree__234_1_1_node.html
index 5572959f1..0e2b67265 100644
--- a/dd/d40/classdata__structures_1_1tree__234_1_1_node.html
+++ b/dd/d40/classdata__structures_1_1tree__234_1_1_node.html
@@ -222,9 +222,9 @@ Private Attributes
Definition at line 41 of file tree_234.cpp.
-
-
43 items({{item, 0, 0}}),
-
44 children({{
nullptr,
nullptr,
nullptr,
nullptr}}) {}
+
42 :
items({{item, 0, 0}}),
+
43 children({{
nullptr,
nullptr,
nullptr,
nullptr}}),
+
std::array< int64_t, 3 > items
store items
int8_t count
track the current item count
std::array< Node *, 4 > children
store the children pointers