Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for attempted (0.91 sec)

  1. doc/go1.17_spec.html

    indirection <code>*x</code> denotes the <a href="#Variables">variable</a> of type <code>T</code> pointed
    to by <code>x</code>.
    If <code>x</code> is <code>nil</code>, an attempt to evaluate <code>*x</code>
    will cause a <a href="#Run_time_panics">run-time panic</a>.
    </p>
    
    <pre>
    &amp;x
    &amp;a[f(2)]
    &amp;Point{2, 3}
    *p
    *pf(x)
    
    var x *int = nil
    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)
Back to top