- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for nextField (0.08 sec)
-
doc/go1.17_spec.html
Redeclaration does not introduce a new variable; it just assigns a new value to the original. </p> <pre> field1, offset := nextField(str, 0) field2, offset := nextField(str, offset) // redeclares offset a, a := 1, 2 // illegal: double declaration of a or no new variable if a was declared elsewhere </pre> <p>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
doc/go_spec.html
The non-blank variable names on the left side of <code>:=</code> must be <a href="#Uniqueness_of_identifiers">unique</a>. </p> <pre> field1, offset := nextField(str, 0) field2, offset := nextField(str, offset) // redeclares offset x, y, x := 1, 2, 3 // illegal: x repeated on left side of := </pre> <p> Short variable declarations may appear only inside functions.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0)