Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for high (0.12 sec)

  1. doc/go1.17_spec.html

    index defaults to zero; a missing <code>high</code> index defaults to the length of the
    sliced operand:
    </p>
    
    <pre>
    a[2:]  // same as a[2 : len(a)]
    a[:3]  // same as a[0 : 3]
    a[:]   // same as a[0 : len(a)]
    </pre>
    
    <p>
    If <code>a</code> is a pointer to an array, <code>a[low : high]</code> is shorthand for
    <code>(*a)[low : high]</code>.
    </p>
    
    <p>
    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