Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Melamed (0.18 sec)

  1. doc/go1.22.html

      </dd>
    </dl><!-- encoding/json -->
    
    <dl id="go/ast"><dt><a href="/pkg/go/ast/">go/ast</a></dt>
      <dd>
        <p><!-- https://go.dev/issue/52463, https://go/dev/cl/504915 -->
          The following declarations related to
          <a href='https://pkg.go.dev/go/ast#Object'>syntactic identifier resolution</a>
          are now <a href="https://go.dev/issue/52463">deprecated</a>:
          <code>Ident.Obj</code>,
          <code>Object</code>,
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    constants</a>. Its value is the index of the respective <a href="#ConstSpec">ConstSpec</a>
    in that constant declaration, starting at zero.
    It can be used to construct a set of related constants:
    </p>
    
    <pre>
    const (
    	c0 = iota  // c0 == 0
    	c1 = iota  // c1 == 1
    	c2 = iota  // c2 == 2
    )
    
    const (
    	a = 1 &lt;&lt; iota  // a == 1  (iota == 0)
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/go_spec.html

    constants</a>. Its value is the index of the respective <a href="#ConstSpec">ConstSpec</a>
    in that constant declaration, starting at zero.
    It can be used to construct a set of related constants:
    </p>
    
    <pre>
    const (
    	c0 = iota  // c0 == 0
    	c1 = iota  // c1 == 1
    	c2 = iota  // c2 == 2
    )
    
    const (
    	a = 1 &lt;&lt; iota  // a == 1  (iota == 0)
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top