diff options
author | chriseth <chris@ethereum.org> | 2017-07-26 20:30:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-26 20:30:32 +0800 |
commit | f74e40598fc0ca92615acb04bf9895c8c76c2403 (patch) | |
tree | ebad0324af62300bf4a478ffa365a851b8a3fc27 | |
parent | 7ad42aeeafe9f6d47ef5890add06b51d005b32ca (diff) | |
download | dexon-solidity-f74e40598fc0ca92615acb04bf9895c8c76c2403.tar dexon-solidity-f74e40598fc0ca92615acb04bf9895c8c76c2403.tar.gz dexon-solidity-f74e40598fc0ca92615acb04bf9895c8c76c2403.tar.bz2 dexon-solidity-f74e40598fc0ca92615acb04bf9895c8c76c2403.tar.lz dexon-solidity-f74e40598fc0ca92615acb04bf9895c8c76c2403.tar.xz dexon-solidity-f74e40598fc0ca92615acb04bf9895c8c76c2403.tar.zst dexon-solidity-f74e40598fc0ca92615acb04bf9895c8c76c2403.zip |
Clarify internal function types
Fixes https://github.com/ethereum/solidity/issues/2617
-rw-r--r-- | docs/types.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/types.rst b/docs/types.rst index 0dc436c9..7085610a 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -318,7 +318,7 @@ can be assigned from functions and function parameters of function type can be used to pass functions to and return functions from function calls. Function types come in two flavours - *internal* and *external* functions: -Internal functions can only be used inside the current contract (more specifically, +Internal functions can only be called inside the current contract (more specifically, inside the current code unit, which also includes internal library functions and inherited functions) because they cannot be executed outside of the context of the current contract. Calling an internal function is realized @@ -337,7 +337,8 @@ function type should not return anything, the whole ``returns (<return types>)`` part has to be omitted. By default, function types are internal, so the ``internal`` keyword can be -omitted. +omitted. In contrast, contract functions themselves are public by default, +only when used as the name of a type, the default is internal. There are two ways to access a function in the current contract: Either directly by its name, ``f``, or using ``this.f``. The former will result in an internal |