Skip to content

Commit fb80a6c

Browse files
committed
Print documentation fix (Verbose parameter added).
1 parent d51fb5b commit fb80a6c

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

docs/wiki/binary_tree/map.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1158,16 +1158,16 @@ equal_range 3: 3,0
11581158
11591159
## Print
11601160
1161-
<sub>template <<code>typename Printer</code>></sub><br>
1161+
<sub>template <<code>bool Verbose = false, typename Printer</code>></sub><br>
11621162
<a name="print1" href="#print1">#</a> `void` **print** (<code>Printer &<b>printer</b></code>) `const` [<>](../../../src/binary_tree/base.hpp#L)<br>
1163-
<sub>template <<code>typename Printer</code>></sub><br>
1163+
<sub>template <<code>bool Verbose = false, typename Printer</code>></sub><br>
11641164
<a name="print2" href="#print2">#</a> `void` **print** ([<code>const Printer &<b>printer</b></code>]) `const` [<>](../../../src/binary_tree/base.hpp#L)<br>
1165-
<sub>template <<code>typename Printer, typename T</code>></sub><br>
1165+
<sub>template <<code>bool Verbose = false, typename Printer, typename T</code>></sub><br>
11661166
<a name="print3" href="#print3">#</a> `void` **print** (<code>const T &<b>tr</b>, Printer &<b>printer</b></code>) `const` [<>](../../../src/binary_tree/base.hpp#L)<br>
1167-
<sub>template <<code>typename Printer, typename T</code>></sub><br>
1167+
<sub>template <<code>bool Verbose = false, typename Printer, typename T</code>></sub><br>
11681168
<a name="print4" href="#print4">#</a> `void` **print** (<code>const T &<b>tr</b></code> [<code>, const Printer &<b>printer</b></code>]) `const` [<>](../../../src/binary_tree/base.hpp#L)
11691169
1170-
Prints the tree or subtree to the ***stdout***.
1170+
Prints the tree or subtree to the ***stdout***. If `Verbose` is set to `true`, aditional internal tree information is also displayed.
11711171
11721172
**<u>Note</u>:** `Printer` should print an element to the ***stdout*** without the *new line* character.
11731173

docs/wiki/binary_tree/multimap.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1019,16 +1019,16 @@ equal_range 3: 3,0 3,1
10191019
10201020
## Print
10211021
1022-
<sub>template <<code>typename Printer</code>></sub><br>
1022+
<sub>template <<code>bool Verbose = false, typename Printer</code>></sub><br>
10231023
<a name="print1" href="#print1">#</a> `void` **print** (<code>Printer &<b>printer</b></code>) `const` [<>](../../../src/binary_tree/base.hpp#L)<br>
1024-
<sub>template <<code>typename Printer</code>></sub><br>
1024+
<sub>template <<code>bool Verbose = false, typename Printer</code>></sub><br>
10251025
<a name="print2" href="#print2">#</a> `void` **print** ([<code>const Printer &<b>printer</b></code>]) `const` [<>](../../../src/binary_tree/base.hpp#L)<br>
1026-
<sub>template <<code>typename Printer, typename T</code>></sub><br>
1026+
<sub>template <<code>bool Verbose = false, typename Printer, typename T</code>></sub><br>
10271027
<a name="print3" href="#print3">#</a> `void` **print** (<code>const T &<b>tr</b>, Printer &<b>printer</b></code>) `const` [<>](../../../src/binary_tree/base.hpp#L)<br>
1028-
<sub>template <<code>typename Printer, typename T</code>></sub><br>
1028+
<sub>template <<code>bool Verbose = false, typename Printer, typename T</code>></sub><br>
10291029
<a name="print4" href="#print4">#</a> `void` **print** (<code>const T &<b>tr</b></code> [<code>, const Printer &<b>printer</b></code>]) `const` [<>](../../../src/binary_tree/base.hpp#L)
10301030
1031-
Prints the tree or subtree to the ***stdout***.
1031+
Prints the tree or subtree to the ***stdout***. If `Verbose` is set to `true`, aditional internal tree information is also displayed.
10321032
10331033
**<u>Note</u>:** `Printer` should print an element to the ***stdout*** without the *new line* character.
10341034

docs/wiki/binary_tree/multiset.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -964,16 +964,16 @@ equal_range 3: 3 3
964964
965965
## Print
966966
967-
<sub>template <<code>typename Printer</code>></sub><br>
967+
<sub>template <<code>bool Verbose = false, typename Printer</code>></sub><br>
968968
<a name="print1" href="#print1">#</a> `void` **print** (<code>Printer &<b>printer</b></code>) `const` [<>](../../../src/binary_tree/base.hpp#L)<br>
969-
<sub>template <<code>typename Printer</code>></sub><br>
969+
<sub>template <<code>bool Verbose = false, typename Printer</code>></sub><br>
970970
<a name="print2" href="#print2">#</a> `void` **print** ([<code>const Printer &<b>printer</b></code>]) `const` [<>](../../../src/binary_tree/base.hpp#L)<br>
971-
<sub>template <<code>typename Printer, typename T</code>></sub><br>
971+
<sub>template <<code>bool Verbose = false, typename Printer, typename T</code>></sub><br>
972972
<a name="print3" href="#print3">#</a> `void` **print** (<code>const T &<b>tr</b>, Printer &<b>printer</b></code>) `const` [<>](../../../src/binary_tree/base.hpp#L)<br>
973-
<sub>template <<code>typename Printer, typename T</code>></sub><br>
973+
<sub>template <<code>bool Verbose = false, typename Printer, typename T</code>></sub><br>
974974
<a name="print4" href="#print4">#</a> `void` **print** (<code>const T &<b>tr</b></code> [<code>, const Printer &<b>printer</b></code>]) `const` [<>](../../../src/binary_tree/base.hpp#L)
975975
976-
Prints the tree or subtree to the ***stdout***.
976+
Prints the tree or subtree to the ***stdout***. If `Verbose` is set to `true`, aditional internal tree information is also displayed.
977977
978978
**<u>Note</u>:** `Printer` should print an element to the ***stdout*** without the *new line* character.
979979

docs/wiki/binary_tree/set.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -979,16 +979,16 @@ equal_range 3: 3
979979
980980
## Print
981981
982-
<sub>template <<code>typename Printer</code>></sub><br>
982+
<sub>template <<code>bool Verbose = false, typename Printer</code>></sub><br>
983983
<a name="print1" href="#print1">#</a> `void` **print** (<code>Printer &<b>printer</b></code>) `const` [<>](../../../src/binary_tree/base.hpp#L)<br>
984-
<sub>template <<code>typename Printer</code>></sub><br>
984+
<sub>template <<code>bool Verbose = false, typename Printer</code>></sub><br>
985985
<a name="print2" href="#print2">#</a> `void` **print** ([<code>const Printer &<b>printer</b></code>]) `const` [<>](../../../src/binary_tree/base.hpp#L)<br>
986-
<sub>template <<code>typename Printer, typename T</code>></sub><br>
986+
<sub>template <<code>bool Verbose = false, typename Printer, typename T</code>></sub><br>
987987
<a name="print3" href="#print3">#</a> `void` **print** (<code>const T &<b>tr</b>, Printer &<b>printer</b></code>) `const` [<>](../../../src/binary_tree/base.hpp#L)<br>
988-
<sub>template <<code>typename Printer, typename T</code>></sub><br>
988+
<sub>template <<code>bool Verbose = false, typename Printer, typename T</code>></sub><br>
989989
<a name="print4" href="#print4">#</a> `void` **print** (<code>const T &<b>tr</b></code> [<code>, const Printer &<b>printer</b></code>]) `const` [<>](../../../src/binary_tree/base.hpp#L)
990990
991-
Prints the tree or subtree to the ***stdout***.
991+
Prints the tree or subtree to the ***stdout***. If `Verbose` is set to `true`, aditional internal tree information is also displayed.
992992
993993
**<u>Note</u>:** `Printer` should print an element to the ***stdout*** without the *new line* character.
994994

0 commit comments

Comments
 (0)