Lines Matching full:blank
693 If you only need the second item in the range (the value), use the <em>blank identifier</em>, an underscore, to discard the first:
703 The blank identifier has many uses, as described in <a href="#blank">a later section</a>.
1610 you can use the <a href="#blank">blank identifier</a> (<code>_</code>)
1640 format for each argument. The <code>Println</code> versions also insert a blank
2460 <h2 id="blank">The blank identifier</h2>
2463 We've mentioned the blank identifier a couple of times now, in the context of
2466 The blank identifier can be assigned or declared with any value of any type, with the
2475 <h3 id="blank_assign">The blank identifier in multiple assignment</h3>
2478 The use of a blank identifier in a <code>for</code> <code>range</code> loop is a
2485 a blank identifier on the left-hand-side of
2491 use the blank identifier to discard the irrelevant value.
2526 The blank identifier provides a workaround.
2538 blank identifier to refer to a symbol from the imported package.
2540 to the blank identifier will silence the unused variable error.
2556 blank assignments identify code as a work in progress.
2566 to the blank identifier:
2606 actually using the interface itself, perhaps as part of an error check, use the blank
2627 a global declaration using the blank identifier can be used in the package:
2642 The appearance of the blank identifier in this construct indicates that