Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for subexpressions (0.14 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    //  - an additional conditional can be provided after the match pattern with "&&".
    // on the generated side
    //  - the type of the top-level expression is the same as the one on the left-hand side.
    //  - the type of any subexpressions must be specified explicitly (or
    //    be specified in the op's type field).
    //  - auxint will be 0 if not specified.
    //  - aux will be nil if not specified.
    
    // blocks are specified using the following format:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    )
    
    func f() int {
    	d++
    	return d
    }
    </pre>
    
    <p>
    the initialization order is <code>d</code>, <code>b</code>, <code>c</code>, <code>a</code>.
    Note that the order of subexpressions in initialization expressions is irrelevant:
    <code>a = c + b</code> and <code>a = b + c</code> result in the same initialization
    order in this example.
    </p>
    
    <p>
    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