From ddad6a3f80fed086bd605a6e7606b044174f3b12 Mon Sep 17 00:00:00 2001 From: Kevin Wu Date: Mon, 18 Dec 2017 09:55:13 -0800 Subject: add clarity to destructuring assignments --- docs/control-structures.rst | 1 + 1 file changed, 1 insertion(+) (limited to 'docs') diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 0c5825bc..1a8ee25b 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -295,6 +295,7 @@ Solidity internally allows tuple types, i.e. a list of objects of potentially di // the rest of the values are discarded. (data.length,) = f(); // Sets the length to 7 // The same can be done on the left side. + // If the tuple begins in an empty component, the beginning values are discarded. (,data[3]) = f(); // Sets data[3] to 2 // Components can only be left out at the left-hand-side of assignments, with // one exception: -- cgit v1.2.3