Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for comme (0.17 sec)

  1. doc/go1.17_spec.html

    </p>
    
    
    <h3 id="Type_declarations">Type declarations</h3>
    
    <p>
    A type declaration binds an identifier, the <i>type name</i>, to a <a href="#Types">type</a>.
    Type declarations come in two forms: alias declarations and type definitions.
    </p>
    
    <pre class="ebnf">
    TypeDecl = "type" ( TypeSpec | "(" { TypeSpec ";" } ")" ) .
    TypeSpec = AliasDecl | TypeDef .
    </pre>
    
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    expression and the type declaration is parsed as an array type declaration.
    To resolve the ambiguity, embed the constraint in an
    <a href="#Interface_types">interface</a> or use a trailing comma:
    </p>
    
    <pre>
    type T[P interface{*C}] …
    type T[P *C,] …
    </pre>
    
    <p>
    Type parameters may also be declared by the receiver specification
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top