Lines Matching full:shorthand
1990 It is shorthand for a regular <a href="#Variable_declarations">variable declaration</a>
2334 and is shorthand for a slice operation applied to an array:
2532 (but not a method), <code>x.f</code> is shorthand for <code>(*x).f</code>.
2885 <li><code>a[x]</code> is shorthand for <code>(*a)[x]</code></li>
3008 If <code>a</code> is a pointer to an array, <code>a[low : high]</code> is shorthand for
3070 <code>a[low : high : max]</code> is shorthand for <code>(*a)[low : high : max]</code>.
3227 set contains <code>m</code>, <code>x.m()</code> is shorthand
6322 type ArbitraryType int // shorthand for an arbitrary Go type; it is not a real type