Skip to content

Commit 41616b8

Browse files
committed
Updated documentation.
1 parent 66fa20a commit 41616b8

File tree

6 files changed

+1
-46
lines changed

6 files changed

+1
-46
lines changed

docs/api.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ API documentation
1313
api/types
1414
api/signature
1515
api/call
16-
api/del

docs/api/del.rst

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/api/io.rst

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,6 @@ network interfaces like ethernet. An overview of the required methods of an I/O
77
plugin is described in the :doc:`plugins` section.
88

99

10-
Printing
11-
--------
12-
13-
.. code-block:: cpp
14-
15-
#include "print.tcc"
16-
17-
The following functions take care of serialisation of:
18-
19-
- Values of basic types.
20-
- C strings (``char[]``, ``char*``, ``char const[]``, ``char const*``).
21-
- C++ Strings.
22-
- PROGMEM strings (``F()`` macro).
23-
24-
Finally, a print function that takes an arbitrary amount of parameters is
25-
provided for convenience.
26-
27-
Functions
28-
~~~~~~~~~
29-
30-
.. doxygengroup:: print
31-
:content-only:
32-
33-
3410
Reading
3511
-------
3612

docs/api/tuple.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ Initialisation of a Tuple can be done with a brace-initializer-list as follows.
2424
Element retrieval and assignment is described below in the :ref:`Helper
2525
functions` section.
2626

27-
Note that a Tuple, like any higher order data structure, should be passed by
28-
reference.
29-
3027
Class definitions
3128
~~~~~~~~~~~~~~~~~
3229

docs/api/vector.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ Element retrieval and assignment is done in the usual way.
4848
4949
v[11] = 9;
5050
51-
Note that a Vector, like any higher order data structure, should be passed by
52-
reference.
53-
5451
Class definition
5552
----------------
5653

docs/usage.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,7 @@ Tuple respectively.
184184
185185
Tuple<int, Vector<int>, Tuple<char, long> > t;
186186
187-
These objects can be used as parameters as well as return values. Note that
188-
these objects, like any higher order data structure should be passed by
189-
reference.
187+
These objects can be used as parameters as well as return values.
190188

191189

192190
C arrays

0 commit comments

Comments
 (0)