aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/lang/cpp/numeric-types.rst
diff options
context:
space:
mode:
authorHanna Mendes Levitin <hanna@anomaly-3.local>2010-12-01 03:37:07 -0600
committerHanna Mendes Levitin <hanna@anomaly-3.local>2010-12-01 03:37:07 -0600
commita0549b4a15a7093f990fffa4bc1d2d52ec1c16e2 (patch)
tree9c6383570be6d045db4d8942ca3137fc3cb5b8a0 /docs/source/lang/cpp/numeric-types.rst
parent3b7f16dba295da3a0071564ac284c25dc56e6b18 (diff)
downloadlibrambutan-a0549b4a15a7093f990fffa4bc1d2d52ec1c16e2.tar.gz
librambutan-a0549b4a15a7093f990fffa4bc1d2d52ec1c16e2.zip
docs, now with style
Diffstat (limited to 'docs/source/lang/cpp/numeric-types.rst')
-rw-r--r--docs/source/lang/cpp/numeric-types.rst79
1 files changed, 79 insertions, 0 deletions
diff --git a/docs/source/lang/cpp/numeric-types.rst b/docs/source/lang/cpp/numeric-types.rst
new file mode 100644
index 0000000..9d2be48
--- /dev/null
+++ b/docs/source/lang/cpp/numeric-types.rst
@@ -0,0 +1,79 @@
+.. _lang-numeric-types:
+
+Numeric types
+=============
+
+This document serves as a reference for all of the built-in numeric
+types which are available when programming in the IDE. Programmers
+using the :ref:`command-line tools <unix-toolchain>` will have access
+to these types as long as they have imported ``wirish.h``; several are
+defined in in `libmaple_types.h
+<https://github.com/leaflabs/libmaple/blob/master/libmaple/libmaple_types.h>`_.
+
+.. _lang-numeric-types-integral:
+
+Integral types
+--------------
+
+.. cpp:type:: char
+
+ 8-bit integer value.
+
+.. cpp:type:: short
+
+ 16-bit integer value.
+
+.. cpp:type:: int
+
+ 32-bit integer value.
+
+.. cpp:type:: long
+
+ 64-bit integer value.
+
+.. cpp:type:: long long
+
+ 64-bit integer value.
+
+.. cpp:type:: int8
+
+ Synonym for ``char``.
+
+.. cpp:type:: uint8
+
+ Synonym for ``unsigned char``.
+
+.. cpp:type:: int16
+
+ Synonym for ``short``.
+
+.. cpp:type:: uint16
+
+ Synonym for ``unsigned short``.
+
+.. cpp:type:: int32
+
+ Synonym for ``int``.
+
+.. cpp:type:: uint32
+
+ Synonym for ``unsigned int``
+
+.. cpp:type:: int64
+
+ Synonym for ``long long``
+
+.. cpp:type:: uint64
+
+ Synonym for ``unsigned long long``.
+
+Floating-Point Types
+--------------------
+
+.. cpp:type:: float
+
+ 32-bit, IEEE 754 single-precision floating-point type.
+
+.. cpp:type:: double
+
+ 64-bit, IEEE 754 double-precision floating-point type.