Update visibility and getters.

This commit is contained in:
chriseth 2019-12-12 10:56:06 +01:00
parent 269c3c0c06
commit 9de0b3d7b5

View File

@ -6,10 +6,10 @@
Visibility and Getters
**********************
Since Solidity knows two kinds of function calls (internal
Solidity knows two kinds of function calls: internal
ones that do not create an actual EVM call (also called
a "message call") and external
ones that do), there are four types of visibilities for
ones that do. Because of that, there are four types of visibility for
functions and state variables.
Functions have to be specified as being ``external``,
@ -22,7 +22,8 @@ For state variables, ``external`` is not possible.
via transactions. An external function ``f`` cannot be called
internally (i.e. ``f()`` does not work, but ``this.f()`` works).
External functions are sometimes more efficient when
they receive large arrays of data.
they receive large arrays of data, because the data
is not copied from calldata to memory.
``public``:
Public functions are part of the contract interface