aboutsummaryrefslogtreecommitdiffstats
path: root/docs/types.rst
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-05-31 21:55:58 +0800
committerchriseth <c@ethdev.com>2016-05-31 21:55:58 +0800
commitd8bf98598bd812a2329c907bd4c79228f832e75e (patch)
treeaf75154a4c08a0b4465067ed0558da922cd3642f /docs/types.rst
parent4be92c0c39b62547b67ebf75e617abab1ea8b454 (diff)
downloaddexon-solidity-d8bf98598bd812a2329c907bd4c79228f832e75e.tar
dexon-solidity-d8bf98598bd812a2329c907bd4c79228f832e75e.tar.gz
dexon-solidity-d8bf98598bd812a2329c907bd4c79228f832e75e.tar.bz2
dexon-solidity-d8bf98598bd812a2329c907bd4c79228f832e75e.tar.lz
dexon-solidity-d8bf98598bd812a2329c907bd4c79228f832e75e.tar.xz
dexon-solidity-d8bf98598bd812a2329c907bd4c79228f832e75e.tar.zst
dexon-solidity-d8bf98598bd812a2329c907bd4c79228f832e75e.zip
Document inline arrays.
Diffstat (limited to 'docs/types.rst')
-rw-r--r--docs/types.rst38
1 files changed, 38 insertions, 0 deletions
diff --git a/docs/types.rst b/docs/types.rst
index 1d027d23..62164c0f 100644
--- a/docs/types.rst
+++ b/docs/types.rst
@@ -356,6 +356,44 @@ the ``.length`` member.
}
}
+.. index:: ! array;literals, !inline;arrays
+
+Array Literals / Inline Arrays
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Array literals are arrays that are written as an expression and are not
+assigned to a variable right away.
+
+::
+
+ contract C {
+ function f() {
+ g([uint(1), 2, 3]);
+ }
+ function g(uint[3] _data) {
+ // ...
+ }
+ }
+
+The type of an array literal is a memory array of fixed size whose base
+type is the common type of the given elements. The type of ``[1, 2, 3]`` is
+``uint8[3] memory``, because the type of each of these constants is ``uint8``.
+Because of that, it was necessary to convert the first element in the example
+above to ``uint``. Note that currently, fixed size memory arrays cannot
+be assigned to dynamically-sized memory arrays, i.e. the following is not
+possible:
+
+::
+
+ contract C {
+ function f() {
+ // The next line creates a type error because uint[3] memory
+ // cannot be converted to uint[] memory.
+ uint[] x = [uint(1), 3, 4];
+ }
+
+It is planned to remove this restriction in the future but currently creates
+some complications because of how arryes are passed in the ABI.
.. index:: ! array;length, length, push, !array;push