Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for function_name (0.18 sec)

  1. doc/go1.17_spec.html

    <p>
    A function declaration binds an identifier, the <i>function name</i>,
    to a function.
    </p>
    
    <pre class="ebnf">
    FunctionDecl = "func" FunctionName Signature [ FunctionBody ] .
    FunctionName = identifier .
    FunctionBody = Block .
    </pre>
    
    <p>
    If the function's <a href="#Function_types">signature</a> declares
    result parameters, the function body's statement list must end in
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    	a bit.
    -->
    
    <p>
    A function declaration binds an identifier, the <i>function name</i>,
    to a function.
    </p>
    
    <pre class="ebnf">
    FunctionDecl = "func" FunctionName [ TypeParameters ] Signature [ FunctionBody ] .
    FunctionName = identifier .
    FunctionBody = Block .
    </pre>
    
    <p>
    If the function's <a href="#Function_types">signature</a> declares
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top