Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fieldDecl (0.39 sec)

  1. doc/go1.17_spec.html

    Within a struct, non-<a href="#Blank_identifier">blank</a> field names must
    be <a href="#Uniqueness_of_identifiers">unique</a>.
    </p>
    
    <pre class="ebnf">
    StructType    = "struct" "{" { FieldDecl ";" } "}" .
    FieldDecl     = (IdentifierList Type | EmbeddedField) [ Tag ] .
    EmbeddedField = [ "*" ] TypeName .
    Tag           = string_lit .
    </pre>
    
    <pre>
    // An empty struct.
    struct {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top