]> Cypherpunks.ru repositories - gostls13.git/blob - doc/go_spec.html
spec: describe constraint parsing ambiguity and work-around more precisely
[gostls13.git] / doc / go_spec.html
1 <!--{
2         "Title": "The Go Programming Language Specification - Go 1.18 Draft (incomplete)",
3         "Subtitle": "Version of Dec 16, 2021",
4         "Path": "/ref/spec"
5 }-->
6
7 <h2>Earlier version</h2>
8
9 <p>
10 For the pre-Go1.18 specification without generics support see
11 <a href="/doc/go1.17_spec.html">The Go Programming Language Specification</a>.
12 </p>
13
14 <h2 id="Introduction">Introduction</h2>
15
16 <p>
17 This is a reference manual for the Go programming language. For
18 more information and other documents, see <a href="/">golang.org</a>.
19 </p>
20
21 <p>
22 Go is a general-purpose language designed with systems programming
23 in mind. It is strongly typed and garbage-collected and has explicit
24 support for concurrent programming.  Programs are constructed from
25 <i>packages</i>, whose properties allow efficient management of
26 dependencies.
27 </p>
28
29 <p>
30 The grammar is compact and simple to parse, allowing for easy analysis
31 by automatic tools such as integrated development environments.
32 </p>
33
34 <h2 id="Notation">Notation</h2>
35 <p>
36 The syntax is specified using Extended Backus-Naur Form (EBNF):
37 </p>
38
39 <pre class="grammar">
40 Production  = production_name "=" [ Expression ] "." .
41 Expression  = Alternative { "|" Alternative } .
42 Alternative = Term { Term } .
43 Term        = production_name | token [ "…" token ] | Group | Option | Repetition .
44 Group       = "(" Expression ")" .
45 Option      = "[" Expression "]" .
46 Repetition  = "{" Expression "}" .
47 </pre>
48
49 <p>
50 Productions are expressions constructed from terms and the following
51 operators, in increasing precedence:
52 </p>
53 <pre class="grammar">
54 |   alternation
55 ()  grouping
56 []  option (0 or 1 times)
57 {}  repetition (0 to n times)
58 </pre>
59
60 <p>
61 Lower-case production names are used to identify lexical tokens.
62 Non-terminals are in CamelCase. Lexical tokens are enclosed in
63 double quotes <code>""</code> or back quotes <code>``</code>.
64 </p>
65
66 <p>
67 The form <code>a … b</code> represents the set of characters from
68 <code>a</code> through <code>b</code> as alternatives. The horizontal
69 ellipsis <code>…</code> is also used elsewhere in the spec to informally denote various
70 enumerations or code snippets that are not further specified. The character <code>…</code>
71 (as opposed to the three characters <code>...</code>) is not a token of the Go
72 language.
73 </p>
74
75 <h2 id="Source_code_representation">Source code representation</h2>
76
77 <p>
78 Source code is Unicode text encoded in
79 <a href="https://en.wikipedia.org/wiki/UTF-8">UTF-8</a>. The text is not
80 canonicalized, so a single accented code point is distinct from the
81 same character constructed from combining an accent and a letter;
82 those are treated as two code points.  For simplicity, this document
83 will use the unqualified term <i>character</i> to refer to a Unicode code point
84 in the source text.
85 </p>
86 <p>
87 Each code point is distinct; for instance, upper and lower case letters
88 are different characters.
89 </p>
90 <p>
91 Implementation restriction: For compatibility with other tools, a
92 compiler may disallow the NUL character (U+0000) in the source text.
93 </p>
94 <p>
95 Implementation restriction: For compatibility with other tools, a
96 compiler may ignore a UTF-8-encoded byte order mark
97 (U+FEFF) if it is the first Unicode code point in the source text.
98 A byte order mark may be disallowed anywhere else in the source.
99 </p>
100
101 <h3 id="Characters">Characters</h3>
102
103 <p>
104 The following terms are used to denote specific Unicode character classes:
105 </p>
106 <pre class="ebnf">
107 newline        = /* the Unicode code point U+000A */ .
108 unicode_char   = /* an arbitrary Unicode code point except newline */ .
109 unicode_letter = /* a Unicode code point classified as "Letter" */ .
110 unicode_digit  = /* a Unicode code point classified as "Number, decimal digit" */ .
111 </pre>
112
113 <p>
114 In <a href="https://www.unicode.org/versions/Unicode8.0.0/">The Unicode Standard 8.0</a>,
115 Section 4.5 "General Category" defines a set of character categories.
116 Go treats all characters in any of the Letter categories Lu, Ll, Lt, Lm, or Lo
117 as Unicode letters, and those in the Number category Nd as Unicode digits.
118 </p>
119
120 <h3 id="Letters_and_digits">Letters and digits</h3>
121
122 <p>
123 The underscore character <code>_</code> (U+005F) is considered a letter.
124 </p>
125 <pre class="ebnf">
126 letter        = unicode_letter | "_" .
127 decimal_digit = "0" … "9" .
128 binary_digit  = "0" | "1" .
129 octal_digit   = "0" … "7" .
130 hex_digit     = "0" … "9" | "A" … "F" | "a" … "f" .
131 </pre>
132
133 <h2 id="Lexical_elements">Lexical elements</h2>
134
135 <h3 id="Comments">Comments</h3>
136
137 <p>
138 Comments serve as program documentation. There are two forms:
139 </p>
140
141 <ol>
142 <li>
143 <i>Line comments</i> start with the character sequence <code>//</code>
144 and stop at the end of the line.
145 </li>
146 <li>
147 <i>General comments</i> start with the character sequence <code>/*</code>
148 and stop with the first subsequent character sequence <code>*/</code>.
149 </li>
150 </ol>
151
152 <p>
153 A comment cannot start inside a <a href="#Rune_literals">rune</a> or
154 <a href="#String_literals">string literal</a>, or inside a comment.
155 A general comment containing no newlines acts like a space.
156 Any other comment acts like a newline.
157 </p>
158
159 <h3 id="Tokens">Tokens</h3>
160
161 <p>
162 Tokens form the vocabulary of the Go language.
163 There are four classes: <i>identifiers</i>, <i>keywords</i>, <i>operators
164 and punctuation</i>, and <i>literals</i>.  <i>White space</i>, formed from
165 spaces (U+0020), horizontal tabs (U+0009),
166 carriage returns (U+000D), and newlines (U+000A),
167 is ignored except as it separates tokens
168 that would otherwise combine into a single token. Also, a newline or end of file
169 may trigger the insertion of a <a href="#Semicolons">semicolon</a>.
170 While breaking the input into tokens,
171 the next token is the longest sequence of characters that form a
172 valid token.
173 </p>
174
175 <h3 id="Semicolons">Semicolons</h3>
176
177 <p>
178 The formal grammar uses semicolons <code>";"</code> as terminators in
179 a number of productions. Go programs may omit most of these semicolons
180 using the following two rules:
181 </p>
182
183 <ol>
184 <li>
185 When the input is broken into tokens, a semicolon is automatically inserted
186 into the token stream immediately after a line's final token if that token is
187 <ul>
188         <li>an
189             <a href="#Identifiers">identifier</a>
190         </li>
191
192         <li>an
193             <a href="#Integer_literals">integer</a>,
194             <a href="#Floating-point_literals">floating-point</a>,
195             <a href="#Imaginary_literals">imaginary</a>,
196             <a href="#Rune_literals">rune</a>, or
197             <a href="#String_literals">string</a> literal
198         </li>
199
200         <li>one of the <a href="#Keywords">keywords</a>
201             <code>break</code>,
202             <code>continue</code>,
203             <code>fallthrough</code>, or
204             <code>return</code>
205         </li>
206
207         <li>one of the <a href="#Operators_and_punctuation">operators and punctuation</a>
208             <code>++</code>,
209             <code>--</code>,
210             <code>)</code>,
211             <code>]</code>, or
212             <code>}</code>
213         </li>
214 </ul>
215 </li>
216
217 <li>
218 To allow complex statements to occupy a single line, a semicolon
219 may be omitted before a closing <code>")"</code> or <code>"}"</code>.
220 </li>
221 </ol>
222
223 <p>
224 To reflect idiomatic use, code examples in this document elide semicolons
225 using these rules.
226 </p>
227
228
229 <h3 id="Identifiers">Identifiers</h3>
230
231 <p>
232 Identifiers name program entities such as variables and types.
233 An identifier is a sequence of one or more letters and digits.
234 The first character in an identifier must be a letter.
235 </p>
236 <pre class="ebnf">
237 identifier = letter { letter | unicode_digit } .
238 </pre>
239 <pre>
240 a
241 _x9
242 ThisVariableIsExported
243 αβ
244 </pre>
245
246 <p>
247 Some identifiers are <a href="#Predeclared_identifiers">predeclared</a>.
248 </p>
249
250
251 <h3 id="Keywords">Keywords</h3>
252
253 <p>
254 The following keywords are reserved and may not be used as identifiers.
255 </p>
256 <pre class="grammar">
257 break        default      func         interface    select
258 case         defer        go           map          struct
259 chan         else         goto         package      switch
260 const        fallthrough  if           range        type
261 continue     for          import       return       var
262 </pre>
263
264 <h3 id="Operators_and_punctuation">Operators and punctuation</h3>
265
266 <p>
267 The following character sequences represent <a href="#Operators">operators</a>
268 (including <a href="#Assignments">assignment operators</a>) and punctuation:
269 </p>
270 <pre class="grammar">
271 +    &amp;     +=    &amp;=     &amp;&amp;    ==    !=    (    )
272 -    |     -=    |=     ||    &lt;     &lt;=    [    ]
273 *    ^     *=    ^=     &lt;-    &gt;     &gt;=    {    }
274 /    &lt;&lt;    /=    &lt;&lt;=    ++    =     :=    ,    ;
275 %    &gt;&gt;    %=    &gt;&gt;=    --    !     ...   .    :
276      &amp;^          &amp;^=          ~
277 </pre>
278
279 <h3 id="Integer_literals">Integer literals</h3>
280
281 <p>
282 An integer literal is a sequence of digits representing an
283 <a href="#Constants">integer constant</a>.
284 An optional prefix sets a non-decimal base: <code>0b</code> or <code>0B</code>
285 for binary, <code>0</code>, <code>0o</code>, or <code>0O</code> for octal,
286 and <code>0x</code> or <code>0X</code> for hexadecimal.
287 A single <code>0</code> is considered a decimal zero.
288 In hexadecimal literals, letters <code>a</code> through <code>f</code>
289 and <code>A</code> through <code>F</code> represent values 10 through 15.
290 </p>
291
292 <p>
293 For readability, an underscore character <code>_</code> may appear after
294 a base prefix or between successive digits; such underscores do not change
295 the literal's value.
296 </p>
297 <pre class="ebnf">
298 int_lit        = decimal_lit | binary_lit | octal_lit | hex_lit .
299 decimal_lit    = "0" | ( "1" … "9" ) [ [ "_" ] decimal_digits ] .
300 binary_lit     = "0" ( "b" | "B" ) [ "_" ] binary_digits .
301 octal_lit      = "0" [ "o" | "O" ] [ "_" ] octal_digits .
302 hex_lit        = "0" ( "x" | "X" ) [ "_" ] hex_digits .
303
304 decimal_digits = decimal_digit { [ "_" ] decimal_digit } .
305 binary_digits  = binary_digit { [ "_" ] binary_digit } .
306 octal_digits   = octal_digit { [ "_" ] octal_digit } .
307 hex_digits     = hex_digit { [ "_" ] hex_digit } .
308 </pre>
309
310 <pre>
311 42
312 4_2
313 0600
314 0_600
315 0o600
316 0O600       // second character is capital letter 'O'
317 0xBadFace
318 0xBad_Face
319 0x_67_7a_2f_cc_40_c6
320 170141183460469231731687303715884105727
321 170_141183_460469_231731_687303_715884_105727
322
323 _42         // an identifier, not an integer literal
324 42_         // invalid: _ must separate successive digits
325 4__2        // invalid: only one _ at a time
326 0_xBadFace  // invalid: _ must separate successive digits
327 </pre>
328
329
330 <h3 id="Floating-point_literals">Floating-point literals</h3>
331
332 <p>
333 A floating-point literal is a decimal or hexadecimal representation of a
334 <a href="#Constants">floating-point constant</a>.
335 </p>
336
337 <p>
338 A decimal floating-point literal consists of an integer part (decimal digits),
339 a decimal point, a fractional part (decimal digits), and an exponent part
340 (<code>e</code> or <code>E</code> followed by an optional sign and decimal digits).
341 One of the integer part or the fractional part may be elided; one of the decimal point
342 or the exponent part may be elided.
343 An exponent value exp scales the mantissa (integer and fractional part) by 10<sup>exp</sup>.
344 </p>
345
346 <p>
347 A hexadecimal floating-point literal consists of a <code>0x</code> or <code>0X</code>
348 prefix, an integer part (hexadecimal digits), a radix point, a fractional part (hexadecimal digits),
349 and an exponent part (<code>p</code> or <code>P</code> followed by an optional sign and decimal digits).
350 One of the integer part or the fractional part may be elided; the radix point may be elided as well,
351 but the exponent part is required. (This syntax matches the one given in IEEE 754-2008 §5.12.3.)
352 An exponent value exp scales the mantissa (integer and fractional part) by 2<sup>exp</sup>.
353 </p>
354
355 <p>
356 For readability, an underscore character <code>_</code> may appear after
357 a base prefix or between successive digits; such underscores do not change
358 the literal value.
359 </p>
360
361 <pre class="ebnf">
362 float_lit         = decimal_float_lit | hex_float_lit .
363
364 decimal_float_lit = decimal_digits "." [ decimal_digits ] [ decimal_exponent ] |
365                     decimal_digits decimal_exponent |
366                     "." decimal_digits [ decimal_exponent ] .
367 decimal_exponent  = ( "e" | "E" ) [ "+" | "-" ] decimal_digits .
368
369 hex_float_lit     = "0" ( "x" | "X" ) hex_mantissa hex_exponent .
370 hex_mantissa      = [ "_" ] hex_digits "." [ hex_digits ] |
371                     [ "_" ] hex_digits |
372                     "." hex_digits .
373 hex_exponent      = ( "p" | "P" ) [ "+" | "-" ] decimal_digits .
374 </pre>
375
376 <pre>
377 0.
378 72.40
379 072.40       // == 72.40
380 2.71828
381 1.e+0
382 6.67428e-11
383 1E6
384 .25
385 .12345E+5
386 1_5.         // == 15.0
387 0.15e+0_2    // == 15.0
388
389 0x1p-2       // == 0.25
390 0x2.p10      // == 2048.0
391 0x1.Fp+0     // == 1.9375
392 0X.8p-0      // == 0.5
393 0X_1FFFP-16  // == 0.1249847412109375
394 0x15e-2      // == 0x15e - 2 (integer subtraction)
395
396 0x.p1        // invalid: mantissa has no digits
397 1p-2         // invalid: p exponent requires hexadecimal mantissa
398 0x1.5e-2     // invalid: hexadecimal mantissa requires p exponent
399 1_.5         // invalid: _ must separate successive digits
400 1._5         // invalid: _ must separate successive digits
401 1.5_e1       // invalid: _ must separate successive digits
402 1.5e_1       // invalid: _ must separate successive digits
403 1.5e1_       // invalid: _ must separate successive digits
404 </pre>
405
406
407 <h3 id="Imaginary_literals">Imaginary literals</h3>
408
409 <p>
410 An imaginary literal represents the imaginary part of a
411 <a href="#Constants">complex constant</a>.
412 It consists of an <a href="#Integer_literals">integer</a> or
413 <a href="#Floating-point_literals">floating-point</a> literal
414 followed by the lower-case letter <code>i</code>.
415 The value of an imaginary literal is the value of the respective
416 integer or floating-point literal multiplied by the imaginary unit <i>i</i>.
417 </p>
418
419 <pre class="ebnf">
420 imaginary_lit = (decimal_digits | int_lit | float_lit) "i" .
421 </pre>
422
423 <p>
424 For backward compatibility, an imaginary literal's integer part consisting
425 entirely of decimal digits (and possibly underscores) is considered a decimal
426 integer, even if it starts with a leading <code>0</code>.
427 </p>
428
429 <pre>
430 0i
431 0123i         // == 123i for backward-compatibility
432 0o123i        // == 0o123 * 1i == 83i
433 0xabci        // == 0xabc * 1i == 2748i
434 0.i
435 2.71828i
436 1.e+0i
437 6.67428e-11i
438 1E6i
439 .25i
440 .12345E+5i
441 0x1p-2i       // == 0x1p-2 * 1i == 0.25i
442 </pre>
443
444
445 <h3 id="Rune_literals">Rune literals</h3>
446
447 <p>
448 A rune literal represents a <a href="#Constants">rune constant</a>,
449 an integer value identifying a Unicode code point.
450 A rune literal is expressed as one or more characters enclosed in single quotes,
451 as in <code>'x'</code> or <code>'\n'</code>.
452 Within the quotes, any character may appear except newline and unescaped single
453 quote. A single quoted character represents the Unicode value
454 of the character itself,
455 while multi-character sequences beginning with a backslash encode
456 values in various formats.
457 </p>
458
459 <p>
460 The simplest form represents the single character within the quotes;
461 since Go source text is Unicode characters encoded in UTF-8, multiple
462 UTF-8-encoded bytes may represent a single integer value.  For
463 instance, the literal <code>'a'</code> holds a single byte representing
464 a literal <code>a</code>, Unicode U+0061, value <code>0x61</code>, while
465 <code>'ä'</code> holds two bytes (<code>0xc3</code> <code>0xa4</code>) representing
466 a literal <code>a</code>-dieresis, U+00E4, value <code>0xe4</code>.
467 </p>
468
469 <p>
470 Several backslash escapes allow arbitrary values to be encoded as
471 ASCII text.  There are four ways to represent the integer value
472 as a numeric constant: <code>\x</code> followed by exactly two hexadecimal
473 digits; <code>\u</code> followed by exactly four hexadecimal digits;
474 <code>\U</code> followed by exactly eight hexadecimal digits, and a
475 plain backslash <code>\</code> followed by exactly three octal digits.
476 In each case the value of the literal is the value represented by
477 the digits in the corresponding base.
478 </p>
479
480 <p>
481 Although these representations all result in an integer, they have
482 different valid ranges.  Octal escapes must represent a value between
483 0 and 255 inclusive.  Hexadecimal escapes satisfy this condition
484 by construction. The escapes <code>\u</code> and <code>\U</code>
485 represent Unicode code points so within them some values are illegal,
486 in particular those above <code>0x10FFFF</code> and surrogate halves.
487 </p>
488
489 <p>
490 After a backslash, certain single-character escapes represent special values:
491 </p>
492
493 <pre class="grammar">
494 \a   U+0007 alert or bell
495 \b   U+0008 backspace
496 \f   U+000C form feed
497 \n   U+000A line feed or newline
498 \r   U+000D carriage return
499 \t   U+0009 horizontal tab
500 \v   U+000B vertical tab
501 \\   U+005C backslash
502 \'   U+0027 single quote  (valid escape only within rune literals)
503 \"   U+0022 double quote  (valid escape only within string literals)
504 </pre>
505
506 <p>
507 All other sequences starting with a backslash are illegal inside rune literals.
508 </p>
509 <pre class="ebnf">
510 rune_lit         = "'" ( unicode_value | byte_value ) "'" .
511 unicode_value    = unicode_char | little_u_value | big_u_value | escaped_char .
512 byte_value       = octal_byte_value | hex_byte_value .
513 octal_byte_value = `\` octal_digit octal_digit octal_digit .
514 hex_byte_value   = `\` "x" hex_digit hex_digit .
515 little_u_value   = `\` "u" hex_digit hex_digit hex_digit hex_digit .
516 big_u_value      = `\` "U" hex_digit hex_digit hex_digit hex_digit
517                            hex_digit hex_digit hex_digit hex_digit .
518 escaped_char     = `\` ( "a" | "b" | "f" | "n" | "r" | "t" | "v" | `\` | "'" | `"` ) .
519 </pre>
520
521 <pre>
522 'a'
523 'ä'
524 '本'
525 '\t'
526 '\000'
527 '\007'
528 '\377'
529 '\x07'
530 '\xff'
531 '\u12e4'
532 '\U00101234'
533 '\''         // rune literal containing single quote character
534 'aa'         // illegal: too many characters
535 '\xa'        // illegal: too few hexadecimal digits
536 '\0'         // illegal: too few octal digits
537 '\uDFFF'     // illegal: surrogate half
538 '\U00110000' // illegal: invalid Unicode code point
539 </pre>
540
541
542 <h3 id="String_literals">String literals</h3>
543
544 <p>
545 A string literal represents a <a href="#Constants">string constant</a>
546 obtained from concatenating a sequence of characters. There are two forms:
547 raw string literals and interpreted string literals.
548 </p>
549
550 <p>
551 Raw string literals are character sequences between back quotes, as in
552 <code>`foo`</code>.  Within the quotes, any character may appear except
553 back quote. The value of a raw string literal is the
554 string composed of the uninterpreted (implicitly UTF-8-encoded) characters
555 between the quotes;
556 in particular, backslashes have no special meaning and the string may
557 contain newlines.
558 Carriage return characters ('\r') inside raw string literals
559 are discarded from the raw string value.
560 </p>
561
562 <p>
563 Interpreted string literals are character sequences between double
564 quotes, as in <code>&quot;bar&quot;</code>.
565 Within the quotes, any character may appear except newline and unescaped double quote.
566 The text between the quotes forms the
567 value of the literal, with backslash escapes interpreted as they
568 are in <a href="#Rune_literals">rune literals</a> (except that <code>\'</code> is illegal and
569 <code>\"</code> is legal), with the same restrictions.
570 The three-digit octal (<code>\</code><i>nnn</i>)
571 and two-digit hexadecimal (<code>\x</code><i>nn</i>) escapes represent individual
572 <i>bytes</i> of the resulting string; all other escapes represent
573 the (possibly multi-byte) UTF-8 encoding of individual <i>characters</i>.
574 Thus inside a string literal <code>\377</code> and <code>\xFF</code> represent
575 a single byte of value <code>0xFF</code>=255, while <code>ÿ</code>,
576 <code>\u00FF</code>, <code>\U000000FF</code> and <code>\xc3\xbf</code> represent
577 the two bytes <code>0xc3</code> <code>0xbf</code> of the UTF-8 encoding of character
578 U+00FF.
579 </p>
580
581 <pre class="ebnf">
582 string_lit             = raw_string_lit | interpreted_string_lit .
583 raw_string_lit         = "`" { unicode_char | newline } "`" .
584 interpreted_string_lit = `"` { unicode_value | byte_value } `"` .
585 </pre>
586
587 <pre>
588 `abc`                // same as "abc"
589 `\n
590 \n`                  // same as "\\n\n\\n"
591 "\n"
592 "\""                 // same as `"`
593 "Hello, world!\n"
594 "日本語"
595 "\u65e5本\U00008a9e"
596 "\xff\u00FF"
597 "\uD800"             // illegal: surrogate half
598 "\U00110000"         // illegal: invalid Unicode code point
599 </pre>
600
601 <p>
602 These examples all represent the same string:
603 </p>
604
605 <pre>
606 "日本語"                                 // UTF-8 input text
607 `日本語`                                 // UTF-8 input text as a raw literal
608 "\u65e5\u672c\u8a9e"                    // the explicit Unicode code points
609 "\U000065e5\U0000672c\U00008a9e"        // the explicit Unicode code points
610 "\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e"  // the explicit UTF-8 bytes
611 </pre>
612
613 <p>
614 If the source code represents a character as two code points, such as
615 a combining form involving an accent and a letter, the result will be
616 an error if placed in a rune literal (it is not a single code
617 point), and will appear as two code points if placed in a string
618 literal.
619 </p>
620
621
622 <h2 id="Constants">Constants</h2>
623
624 <p>There are <i>boolean constants</i>,
625 <i>rune constants</i>,
626 <i>integer constants</i>,
627 <i>floating-point constants</i>, <i>complex constants</i>,
628 and <i>string constants</i>. Rune, integer, floating-point,
629 and complex constants are
630 collectively called <i>numeric constants</i>.
631 </p>
632
633 <p>
634 A constant value is represented by a
635 <a href="#Rune_literals">rune</a>,
636 <a href="#Integer_literals">integer</a>,
637 <a href="#Floating-point_literals">floating-point</a>,
638 <a href="#Imaginary_literals">imaginary</a>,
639 or
640 <a href="#String_literals">string</a> literal,
641 an identifier denoting a constant,
642 a <a href="#Constant_expressions">constant expression</a>,
643 a <a href="#Conversions">conversion</a> with a result that is a constant, or
644 the result value of some built-in functions such as
645 <code>unsafe.Sizeof</code> applied to <a href="#Package_unsafe">certain values</a>,
646 <code>cap</code> or <code>len</code> applied to
647 <a href="#Length_and_capacity">some expressions</a>,
648 <code>real</code> and <code>imag</code> applied to a complex constant
649 and <code>complex</code> applied to numeric constants.
650 The boolean truth values are represented by the predeclared constants
651 <code>true</code> and <code>false</code>. The predeclared identifier
652 <a href="#Iota">iota</a> denotes an integer constant.
653 </p>
654
655 <p>
656 In general, complex constants are a form of
657 <a href="#Constant_expressions">constant expression</a>
658 and are discussed in that section.
659 </p>
660
661 <p>
662 Numeric constants represent exact values of arbitrary precision and do not overflow.
663 Consequently, there are no constants denoting the IEEE-754 negative zero, infinity,
664 and not-a-number values.
665 </p>
666
667 <p>
668 Constants may be <a href="#Types">typed</a> or <i>untyped</i>.
669 Literal constants, <code>true</code>, <code>false</code>, <code>iota</code>,
670 and certain <a href="#Constant_expressions">constant expressions</a>
671 containing only untyped constant operands are untyped.
672 </p>
673
674 <p>
675 A constant may be given a type explicitly by a <a href="#Constant_declarations">constant declaration</a>
676 or <a href="#Conversions">conversion</a>, or implicitly when used in a
677 <a href="#Variable_declarations">variable declaration</a> or an
678 <a href="#Assignments">assignment</a> or as an
679 operand in an <a href="#Expressions">expression</a>.
680 It is an error if the constant value
681 cannot be <a href="#Representability">represented</a> as a value of the respective type.
682 </p>
683
684 <p>
685 An untyped constant has a <i>default type</i> which is the type to which the
686 constant is implicitly converted in contexts where a typed value is required,
687 for instance, in a <a href="#Short_variable_declarations">short variable declaration</a>
688 such as <code>i := 0</code> where there is no explicit type.
689 The default type of an untyped constant is <code>bool</code>, <code>rune</code>,
690 <code>int</code>, <code>float64</code>, <code>complex128</code> or <code>string</code>
691 respectively, depending on whether it is a boolean, rune, integer, floating-point,
692 complex, or string constant.
693 </p>
694
695 <p>
696 Implementation restriction: Although numeric constants have arbitrary
697 precision in the language, a compiler may implement them using an
698 internal representation with limited precision.  That said, every
699 implementation must:
700 </p>
701
702 <ul>
703         <li>Represent integer constants with at least 256 bits.</li>
704
705         <li>Represent floating-point constants, including the parts of
706             a complex constant, with a mantissa of at least 256 bits
707             and a signed binary exponent of at least 16 bits.</li>
708
709         <li>Give an error if unable to represent an integer constant
710             precisely.</li>
711
712         <li>Give an error if unable to represent a floating-point or
713             complex constant due to overflow.</li>
714
715         <li>Round to the nearest representable constant if unable to
716             represent a floating-point or complex constant due to limits
717             on precision.</li>
718 </ul>
719
720 <p>
721 These requirements apply both to literal constants and to the result
722 of evaluating <a href="#Constant_expressions">constant
723 expressions</a>.
724 </p>
725
726
727 <h2 id="Variables">Variables</h2>
728
729 <p>
730 A variable is a storage location for holding a <i>value</i>.
731 The set of permissible values is determined by the
732 variable's <i><a href="#Types">type</a></i>.
733 </p>
734
735 <p>
736 A <a href="#Variable_declarations">variable declaration</a>
737 or, for function parameters and results, the signature
738 of a <a href="#Function_declarations">function declaration</a>
739 or <a href="#Function_literals">function literal</a> reserves
740 storage for a named variable.
741
742 Calling the built-in function <a href="#Allocation"><code>new</code></a>
743 or taking the address of a <a href="#Composite_literals">composite literal</a>
744 allocates storage for a variable at run time.
745 Such an anonymous variable is referred to via a (possibly implicit)
746 <a href="#Address_operators">pointer indirection</a>.
747 </p>
748
749 <p>
750 <i>Structured</i> variables of <a href="#Array_types">array</a>, <a href="#Slice_types">slice</a>,
751 and <a href="#Struct_types">struct</a> types have elements and fields that may
752 be <a href="#Address_operators">addressed</a> individually. Each such element
753 acts like a variable.
754 </p>
755
756 <p>
757 The <i>static type</i> (or just <i>type</i>) of a variable is the
758 type given in its declaration, the type provided in the
759 <code>new</code> call or composite literal, or the type of
760 an element of a structured variable.
761 Variables of interface type also have a distinct <i>dynamic type</i>,
762 which is the concrete type of the value assigned to the variable at run time
763 (unless the value is the predeclared identifier <code>nil</code>,
764 which has no type).
765 The dynamic type may vary during execution but values stored in interface
766 variables are always <a href="#Assignability">assignable</a>
767 to the static type of the variable.
768 </p>
769
770 <pre>
771 var x interface{}  // x is nil and has static type interface{}
772 var v *T           // v has value nil, static type *T
773 x = 42             // x has value 42 and dynamic type int
774 x = v              // x has value (*T)(nil) and dynamic type *T
775 </pre>
776
777 <p>
778 A variable's value is retrieved by referring to the variable in an
779 <a href="#Expressions">expression</a>; it is the most recent value
780 <a href="#Assignments">assigned</a> to the variable.
781 If a variable has not yet been assigned a value, its value is the
782 <a href="#The_zero_value">zero value</a> for its type.
783 </p>
784
785
786 <h2 id="Types">Types</h2>
787
788 <p>
789 A type determines a set of values together with operations and methods specific
790 to those values. A type may be denoted by a <i>type name</i>, if it has one, which must be
791 followed by <a href="#Instantiations">type arguments</a> if the type is parameterized.
792 A type may also be specified using a <i>type literal</i>, which composes a type
793 from existing types.
794 </p>
795
796 <pre class="ebnf">
797 Type      = TypeName [ TypeArgs ] | TypeLit | "(" Type ")" .
798 TypeName  = identifier | QualifiedIdent .
799 TypeArgs  = "[" TypeList [ "," ] "]" .
800 TypeList  = Type { "," Type } .
801 TypeLit   = ArrayType | StructType | PointerType | FunctionType | InterfaceType |
802             SliceType | MapType | ChannelType .
803 </pre>
804
805 <p>
806 The language <a href="#Predeclared_identifiers">predeclares</a> certain type names.
807 Others are introduced with <a href="#Type_declarations">type declarations</a>
808 or <a href="#Type_parameter_lists">type parameter lists</a>.
809 <i>Composite types</i>&mdash;array, struct, pointer, function,
810 interface, slice, map, and channel types&mdash;may be constructed using
811 type literals.
812 </p>
813
814 <p>
815 Predeclared types, defined types, and type parameters are called <i>named types</i>.
816 An alias denotes a named type if the type given in the alias declaration is a named type.
817 </p>
818
819 <h3 id="Underlying_types">Underlying types</h3>
820
821 <p>
822 Each type <code>T</code> has an <i>underlying type</i>: If <code>T</code>
823 is one of the predeclared boolean, numeric, or string types, or a type literal,
824 the corresponding underlying type is <code>T</code> itself.
825 Otherwise, <code>T</code>'s underlying type is the underlying type of the
826 type to which <code>T</code> refers in its <a href="#Type_declarations">type
827 declaration</a>. Accordingly, the underlying type of a type parameter is the
828 underlying type of its <a href="#Type_constraints">type constraint</a>, which
829 is always an interface.
830 </p>
831
832 <pre>
833 type (
834         A1 = string
835         A2 = A1
836 )
837
838 type (
839         B1 string
840         B2 B1
841         B3 []B1
842         B4 B3
843 )
844
845 func f[P any](x P) { … }
846 </pre>
847
848 <p>
849 The underlying type of <code>string</code>, <code>A1</code>, <code>A2</code>, <code>B1</code>,
850 and <code>B2</code> is <code>string</code>.
851 The underlying type of <code>[]B1</code>, <code>B3</code>, and <code>B4</code> is <code>[]B1</code>.
852 The underlying type of <code>P</code> is <code>interface{}</code>.
853 </p>
854
855 <h3 id="Method_sets">Method sets</h3>
856
857 <p>
858 The <i>method set</i> of a type determines the methods that can be
859 <a href="#Calls">called</a> on an <a href="#Operands">operand</a> of that type.
860 Every type has a (possibly empty) method set associated with it:
861 </p>
862
863 <ul>
864 <li>The method set of a <a href="#Type_definitions">defined type</a> <code>T</code> consists of all
865 <a href="#Method_declarations">methods</a> declared with receiver type <code>T</code>.
866 </li>
867
868 <li>
869 The method set of a pointer to a defined type <code>T</code>
870 (where <code>T</code> is neither a pointer nor an interface)
871 is the set of all methods declared with receiver <code>*T</code> or <code>T</code>.
872 </li>
873
874 <li>The method set of an <a href="#Interface_types">interface type</a> is the intersection
875 of the method sets of each type in the interface's <a href="#Interface_types">type set</a>
876 (the resulting method set is usually just the set of declared methods in the interface).
877 </li>
878 </ul>
879
880 <p>
881 Further rules apply to structs (and pointer to structs) containing embedded fields,
882 as described in the section on <a href="#Struct_types">struct types</a>.
883 Any other type has an empty method set.
884 </p>
885
886 <p>
887 In a method set, each method must have a
888 <a href="#Uniqueness_of_identifiers">unique</a>
889 non-<a href="#Blank_identifier">blank</a> <a href="#MethodName">method name</a>.
890 </p>
891
892 <h3 id="Boolean_types">Boolean types</h3>
893
894 <p>
895 A <i>boolean type</i> represents the set of Boolean truth values
896 denoted by the predeclared constants <code>true</code>
897 and <code>false</code>. The predeclared boolean type is <code>bool</code>;
898 it is a <a href="#Type_definitions">defined type</a>.
899 </p>
900
901 <h3 id="Numeric_types">Numeric types</h3>
902
903 <p>
904 A <i>numeric type</i> represents sets of integer or floating-point values.
905 The predeclared architecture-independent numeric types are:
906 </p>
907
908 <pre class="grammar">
909 uint8       the set of all unsigned  8-bit integers (0 to 255)
910 uint16      the set of all unsigned 16-bit integers (0 to 65535)
911 uint32      the set of all unsigned 32-bit integers (0 to 4294967295)
912 uint64      the set of all unsigned 64-bit integers (0 to 18446744073709551615)
913
914 int8        the set of all signed  8-bit integers (-128 to 127)
915 int16       the set of all signed 16-bit integers (-32768 to 32767)
916 int32       the set of all signed 32-bit integers (-2147483648 to 2147483647)
917 int64       the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807)
918
919 float32     the set of all IEEE-754 32-bit floating-point numbers
920 float64     the set of all IEEE-754 64-bit floating-point numbers
921
922 complex64   the set of all complex numbers with float32 real and imaginary parts
923 complex128  the set of all complex numbers with float64 real and imaginary parts
924
925 byte        alias for uint8
926 rune        alias for int32
927 </pre>
928
929 <p>
930 The value of an <i>n</i>-bit integer is <i>n</i> bits wide and represented using
931 <a href="https://en.wikipedia.org/wiki/Two's_complement">two's complement arithmetic</a>.
932 </p>
933
934 <p>
935 There is also a set of predeclared numeric types with implementation-specific sizes:
936 </p>
937
938 <pre class="grammar">
939 uint     either 32 or 64 bits
940 int      same size as uint
941 uintptr  an unsigned integer large enough to store the uninterpreted bits of a pointer value
942 </pre>
943
944 <p>
945 To avoid portability issues all numeric types are <a href="#Type_definitions">defined
946 types</a> and thus distinct except
947 <code>byte</code>, which is an <a href="#Alias_declarations">alias</a> for <code>uint8</code>, and
948 <code>rune</code>, which is an alias for <code>int32</code>.
949 Explicit conversions
950 are required when different numeric types are mixed in an expression
951 or assignment. For instance, <code>int32</code> and <code>int</code>
952 are not the same type even though they may have the same size on a
953 particular architecture.
954
955
956 <h3 id="String_types">String types</h3>
957
958 <p>
959 A <i>string type</i> represents the set of string values.
960 A string value is a (possibly empty) sequence of bytes.
961 The number of bytes is called the length of the string and is never negative.
962 Strings are immutable: once created,
963 it is impossible to change the contents of a string.
964 The predeclared string type is <code>string</code>;
965 it is a <a href="#Type_definitions">defined type</a>.
966 </p>
967
968 <p>
969 The length of a string <code>s</code> can be discovered using
970 the built-in function <a href="#Length_and_capacity"><code>len</code></a>.
971 The length is a compile-time constant if the string is a constant.
972 A string's bytes can be accessed by integer <a href="#Index_expressions">indices</a>
973 0 through <code>len(s)-1</code>.
974 It is illegal to take the address of such an element; if
975 <code>s[i]</code> is the <code>i</code>'th byte of a
976 string, <code>&amp;s[i]</code> is invalid.
977 </p>
978
979
980 <h3 id="Array_types">Array types</h3>
981
982 <p>
983 An array is a numbered sequence of elements of a single
984 type, called the element type.
985 The number of elements is called the length of the array and is never negative.
986 </p>
987
988 <pre class="ebnf">
989 ArrayType   = "[" ArrayLength "]" ElementType .
990 ArrayLength = Expression .
991 ElementType = Type .
992 </pre>
993
994 <p>
995 The length is part of the array's type; it must evaluate to a
996 non-negative <a href="#Constants">constant</a>
997 <a href="#Representability">representable</a> by a value
998 of type <code>int</code>.
999 The length of array <code>a</code> can be discovered
1000 using the built-in function <a href="#Length_and_capacity"><code>len</code></a>.
1001 The elements can be addressed by integer <a href="#Index_expressions">indices</a>
1002 0 through <code>len(a)-1</code>.
1003 Array types are always one-dimensional but may be composed to form
1004 multi-dimensional types.
1005 </p>
1006
1007 <pre>
1008 [32]byte
1009 [2*N] struct { x, y int32 }
1010 [1000]*float64
1011 [3][5]int
1012 [2][2][2]float64  // same as [2]([2]([2]float64))
1013 </pre>
1014
1015 <h3 id="Slice_types">Slice types</h3>
1016
1017 <p>
1018 A slice is a descriptor for a contiguous segment of an <i>underlying array</i> and
1019 provides access to a numbered sequence of elements from that array.
1020 A slice type denotes the set of all slices of arrays of its element type.
1021 The number of elements is called the length of the slice and is never negative.
1022 The value of an uninitialized slice is <code>nil</code>.
1023 </p>
1024
1025 <pre class="ebnf">
1026 SliceType = "[" "]" ElementType .
1027 </pre>
1028
1029 <p>
1030 The length of a slice <code>s</code> can be discovered by the built-in function
1031 <a href="#Length_and_capacity"><code>len</code></a>; unlike with arrays it may change during
1032 execution.  The elements can be addressed by integer <a href="#Index_expressions">indices</a>
1033 0 through <code>len(s)-1</code>.  The slice index of a
1034 given element may be less than the index of the same element in the
1035 underlying array.
1036 </p>
1037 <p>
1038 A slice, once initialized, is always associated with an underlying
1039 array that holds its elements.  A slice therefore shares storage
1040 with its array and with other slices of the same array; by contrast,
1041 distinct arrays always represent distinct storage.
1042 </p>
1043 <p>
1044 The array underlying a slice may extend past the end of the slice.
1045 The <i>capacity</i> is a measure of that extent: it is the sum of
1046 the length of the slice and the length of the array beyond the slice;
1047 a slice of length up to that capacity can be created by
1048 <a href="#Slice_expressions"><i>slicing</i></a> a new one from the original slice.
1049 The capacity of a slice <code>a</code> can be discovered using the
1050 built-in function <a href="#Length_and_capacity"><code>cap(a)</code></a>.
1051 </p>
1052
1053 <p>
1054 A new, initialized slice value for a given element type <code>T</code> is
1055 made using the built-in function
1056 <a href="#Making_slices_maps_and_channels"><code>make</code></a>,
1057 which takes a slice type
1058 and parameters specifying the length and optionally the capacity.
1059 A slice created with <code>make</code> always allocates a new, hidden array
1060 to which the returned slice value refers. That is, executing
1061 </p>
1062
1063 <pre>
1064 make([]T, length, capacity)
1065 </pre>
1066
1067 <p>
1068 produces the same slice as allocating an array and <a href="#Slice_expressions">slicing</a>
1069 it, so these two expressions are equivalent:
1070 </p>
1071
1072 <pre>
1073 make([]int, 50, 100)
1074 new([100]int)[0:50]
1075 </pre>
1076
1077 <p>
1078 Like arrays, slices are always one-dimensional but may be composed to construct
1079 higher-dimensional objects.
1080 With arrays of arrays, the inner arrays are, by construction, always the same length;
1081 however with slices of slices (or arrays of slices), the inner lengths may vary dynamically.
1082 Moreover, the inner slices must be initialized individually.
1083 </p>
1084
1085 <h3 id="Struct_types">Struct types</h3>
1086
1087 <p>
1088 A struct is a sequence of named elements, called fields, each of which has a
1089 name and a type. Field names may be specified explicitly (IdentifierList) or
1090 implicitly (EmbeddedField).
1091 Within a struct, non-<a href="#Blank_identifier">blank</a> field names must
1092 be <a href="#Uniqueness_of_identifiers">unique</a>.
1093 </p>
1094
1095 <pre class="ebnf">
1096 StructType    = "struct" "{" { FieldDecl ";" } "}" .
1097 FieldDecl     = (IdentifierList Type | EmbeddedField) [ Tag ] .
1098 EmbeddedField = [ "*" ] TypeName .
1099 Tag           = string_lit .
1100 </pre>
1101
1102 <pre>
1103 // An empty struct.
1104 struct {}
1105
1106 // A struct with 6 fields.
1107 struct {
1108         x, y int
1109         u float32
1110         _ float32  // padding
1111         A *[]int
1112         F func()
1113 }
1114 </pre>
1115
1116 <p>
1117 A field declared with a type but no explicit field name is called an <i>embedded field</i>.
1118 An embedded field must be specified as
1119 a type name <code>T</code> or as a pointer to a non-interface type name <code>*T</code>,
1120 and <code>T</code> itself may not be
1121 a pointer type. The unqualified type name acts as the field name.
1122 </p>
1123
1124 <pre>
1125 // A struct with four embedded fields of types T1, *T2, P.T3 and *P.T4
1126 struct {
1127         T1        // field name is T1
1128         *T2       // field name is T2
1129         P.T3      // field name is T3
1130         *P.T4     // field name is T4
1131         x, y int  // field names are x and y
1132 }
1133 </pre>
1134
1135 <p>
1136 The following declaration is illegal because field names must be unique
1137 in a struct type:
1138 </p>
1139
1140 <pre>
1141 struct {
1142         T     // conflicts with embedded field *T and *P.T
1143         *T    // conflicts with embedded field T and *P.T
1144         *P.T  // conflicts with embedded field T and *T
1145 }
1146 </pre>
1147
1148 <p>
1149 A field or <a href="#Method_declarations">method</a> <code>f</code> of an
1150 embedded field in a struct <code>x</code> is called <i>promoted</i> if
1151 <code>x.f</code> is a legal <a href="#Selectors">selector</a> that denotes
1152 that field or method <code>f</code>.
1153 </p>
1154
1155 <p>
1156 Promoted fields act like ordinary fields
1157 of a struct except that they cannot be used as field names in
1158 <a href="#Composite_literals">composite literals</a> of the struct.
1159 </p>
1160
1161 <p>
1162 Given a struct type <code>S</code> and a <a href="#Type_definitions">defined type</a>
1163 <code>T</code>, promoted methods are included in the method set of the struct as follows:
1164 </p>
1165 <ul>
1166         <li>
1167         If <code>S</code> contains an embedded field <code>T</code>,
1168         the <a href="#Method_sets">method sets</a> of <code>S</code>
1169         and <code>*S</code> both include promoted methods with receiver
1170         <code>T</code>. The method set of <code>*S</code> also
1171         includes promoted methods with receiver <code>*T</code>.
1172         </li>
1173
1174         <li>
1175         If <code>S</code> contains an embedded field <code>*T</code>,
1176         the method sets of <code>S</code> and <code>*S</code> both
1177         include promoted methods with receiver <code>T</code> or
1178         <code>*T</code>.
1179         </li>
1180 </ul>
1181
1182 <p>
1183 A field declaration may be followed by an optional string literal <i>tag</i>,
1184 which becomes an attribute for all the fields in the corresponding
1185 field declaration. An empty tag string is equivalent to an absent tag.
1186 The tags are made visible through a <a href="/pkg/reflect/#StructTag">reflection interface</a>
1187 and take part in <a href="#Type_identity">type identity</a> for structs
1188 but are otherwise ignored.
1189 </p>
1190
1191 <pre>
1192 struct {
1193         x, y float64 ""  // an empty tag string is like an absent tag
1194         name string  "any string is permitted as a tag"
1195         _    [4]byte "ceci n'est pas un champ de structure"
1196 }
1197
1198 // A struct corresponding to a TimeStamp protocol buffer.
1199 // The tag strings define the protocol buffer field numbers;
1200 // they follow the convention outlined by the reflect package.
1201 struct {
1202         microsec  uint64 `protobuf:"1"`
1203         serverIP6 uint64 `protobuf:"2"`
1204 }
1205 </pre>
1206
1207 <h3 id="Pointer_types">Pointer types</h3>
1208
1209 <p>
1210 A pointer type denotes the set of all pointers to <a href="#Variables">variables</a> of a given
1211 type, called the <i>base type</i> of the pointer.
1212 The value of an uninitialized pointer is <code>nil</code>.
1213 </p>
1214
1215 <pre class="ebnf">
1216 PointerType = "*" BaseType .
1217 BaseType    = Type .
1218 </pre>
1219
1220 <pre>
1221 *Point
1222 *[4]int
1223 </pre>
1224
1225 <h3 id="Function_types">Function types</h3>
1226
1227 <p>
1228 A function type denotes the set of all functions with the same parameter
1229 and result types. The value of an uninitialized variable of function type
1230 is <code>nil</code>.
1231 </p>
1232
1233 <pre class="ebnf">
1234 FunctionType   = "func" Signature .
1235 Signature      = Parameters [ Result ] .
1236 Result         = Parameters | Type .
1237 Parameters     = "(" [ ParameterList [ "," ] ] ")" .
1238 ParameterList  = ParameterDecl { "," ParameterDecl } .
1239 ParameterDecl  = [ IdentifierList ] [ "..." ] Type .
1240 </pre>
1241
1242 <p>
1243 Within a list of parameters or results, the names (IdentifierList)
1244 must either all be present or all be absent. If present, each name
1245 stands for one item (parameter or result) of the specified type and
1246 all non-<a href="#Blank_identifier">blank</a> names in the signature
1247 must be <a href="#Uniqueness_of_identifiers">unique</a>.
1248 If absent, each type stands for one item of that type.
1249 Parameter and result
1250 lists are always parenthesized except that if there is exactly
1251 one unnamed result it may be written as an unparenthesized type.
1252 </p>
1253
1254 <p>
1255 The final incoming parameter in a function signature may have
1256 a type prefixed with <code>...</code>.
1257 A function with such a parameter is called <i>variadic</i> and
1258 may be invoked with zero or more arguments for that parameter.
1259 </p>
1260
1261 <pre>
1262 func()
1263 func(x int) int
1264 func(a, _ int, z float32) bool
1265 func(a, b int, z float32) (bool)
1266 func(prefix string, values ...int)
1267 func(a, b int, z float64, opt ...interface{}) (success bool)
1268 func(int, int, float64) (float64, *[]int)
1269 func(n int) func(p *T)
1270 </pre>
1271
1272 <h3 id="Interface_types">Interface types</h3>
1273
1274 <p>
1275 An interface type defines a <i>type set</i>.
1276 A variable of interface type can store a value of any type that is in the type
1277 set of the interface. Such a type is said to <i>implement the interface</i>.
1278 The value of an uninitialized variable of interface type is <code>nil</code>.
1279 </p>
1280
1281 <pre class="ebnf">
1282 InterfaceType  = "interface" "{" { InterfaceElem ";" } "}" .
1283 InterfaceElem  = MethodElem | TypeElem .
1284 MethodElem     = MethodName Signature .
1285 MethodName     = identifier .
1286 TypeElem       = TypeTerm { "|" TypeTerm } .
1287 TypeTerm       = Type | UnderlyingType .
1288 UnderlyingType = "~" Type .
1289 </pre>
1290
1291 <p>
1292 An interface type is specified by a list of <i>interface elements</i>.
1293 An interface element is either a <i>method</i> or a <i>type element</i>,
1294 where a type element is a union of one or more <i>type terms</i>.
1295 A type term is either a single type or a single underlying type.
1296 </p>
1297
1298 <p>
1299 In its most basic form an interface specifies a (possibly empty) list of methods.
1300 The type set defined by such an interface is the set of types which implement all of
1301 those methods, and the corresponding <a href="#Method_sets">method set</a> consists
1302 exactly of the methods specified by the interface.
1303 </p>
1304
1305 <pre>
1306 // A simple File interface.
1307 interface {
1308         Read([]byte) (int, error)
1309         Write([]byte) (int, error)
1310         Close() error
1311 }
1312 </pre>
1313
1314 <p>
1315 The name of each explicitly specified method must be <a href="#Uniqueness_of_identifiers">unique</a>
1316 and not <a href="#Blank_identifier">blank</a>.
1317 </p>
1318
1319 <pre>
1320 interface {
1321         String() string
1322         String() string  // illegal: String not unique
1323         _(x int)         // illegal: method must have non-blank name
1324 }
1325 </pre>
1326
1327 <p>
1328 More than one type may implement an interface.
1329 For instance, if two types <code>S1</code> and <code>S2</code>
1330 have the method set
1331 </p>
1332
1333 <pre>
1334 func (p T) Read(p []byte) (n int, err error)
1335 func (p T) Write(p []byte) (n int, err error)
1336 func (p T) Close() error
1337 </pre>
1338
1339 <p>
1340 (where <code>T</code> stands for either <code>S1</code> or <code>S2</code>)
1341 then the <code>File</code> interface is implemented by both <code>S1</code> and
1342 <code>S2</code>, regardless of what other methods
1343 <code>S1</code> and <code>S2</code> may have or share.
1344 </p>
1345
1346 <p>
1347 Every type that is a member of the type set of an interface implements that interface.
1348 Any given type may implement several distinct interfaces.
1349 For instance, all types implement the <i>empty interface</i> which stands for the set of all types:
1350 </p>
1351
1352 <pre>
1353 interface{}
1354 </pre>
1355
1356 <p>
1357 For convenience, the predeclared type <code>any</code> is an alias for the empty interface.
1358 </p>
1359
1360 <p>
1361 Similarly, consider this interface specification,
1362 which appears within a <a href="#Type_declarations">type declaration</a>
1363 to define an interface called <code>Locker</code>:
1364 </p>
1365
1366 <pre>
1367 type Locker interface {
1368         Lock()
1369         Unlock()
1370 }
1371 </pre>
1372
1373 <p>
1374 If <code>S1</code> and <code>S2</code> also implement
1375 </p>
1376
1377 <pre>
1378 func (p T) Lock() { … }
1379 func (p T) Unlock() { … }
1380 </pre>
1381
1382 <p>
1383 they implement the <code>Locker</code> interface as well
1384 as the <code>File</code> interface.
1385 </p>
1386
1387 <p>
1388 In a slightly more general form
1389 an interface <code>T</code> may use a (possibly qualified) interface type
1390 name <code>E</code> as an interface element. This is called
1391 <i>embedding</i> interface <code>E</code> in <code>T</code>.
1392 The type set of <code>T</code> is the <i>intersection</i> of the type sets
1393 defined by <code>T</code>'s explicitly declared methods and the type sets
1394 of <code>T</code>’s embedded interfaces.
1395 In other words, the type set of <code>T</code> is the set of all types that implement all the
1396 explicitly declared methods of <code>T</code> and also all the methods of
1397 <code>E</code>.
1398 </p>
1399
1400 <pre>
1401 type Reader interface {
1402         Read(p []byte) (n int, err error)
1403         Close() error
1404 }
1405
1406 type Writer interface {
1407         Write(p []byte) (n int, err error)
1408         Close() error
1409 }
1410
1411 // ReadWriter's methods are Read, Write, and Close.
1412 type ReadWriter interface {
1413         Reader  // includes methods of Reader in ReadWriter's method set
1414         Writer  // includes methods of Writer in ReadWriter's method set
1415 }
1416 </pre>
1417
1418 <p>
1419 When embedding interfaces, methods with the
1420 <a href="#Uniqueness_of_identifiers">same</a> names must
1421 have <a href="#Type_identity">identical</a> signatures.
1422 </p>
1423
1424 <pre>
1425 type ReadCloser interface {
1426         Reader   // includes methods of Reader in ReadCloser's method set
1427         Close()  // illegal: signatures of Reader.Close and Close are different
1428 }
1429 </pre>
1430
1431 <p>
1432 Finally, in their most general form, an interface element may also be an arbitrary type term
1433 <code>T</code>, or a term of the form <code>~T</code> specifying the underlying type <code>T</code>,
1434 or a union of terms <code>t<sub>1</sub>|t<sub>2</sub>|…|t<sub>n</sub></code>.
1435 Together with method specifications, these elements enable the precise
1436 definition of an interface's type set as follows:
1437 </p>
1438
1439 <ul>
1440         <li>The type set of the empty interface is the set of all types.
1441         </li>
1442
1443         <li>The type set of a non-empty interface is the intersection of the type sets
1444                 of its interface elements.
1445         </li>
1446
1447         <li>The type set of a method specification is the set of types
1448                 whose method sets include that method.
1449         </li>
1450
1451         <li>The type set of a non-interface type term is the set consisting
1452                 of just that type.
1453         </li>
1454
1455         <li>The type set of a term of the form <code>~T</code>
1456                 is the set of types whose underlying type is <code>T</code>.
1457         </li>
1458
1459         <li>The type set of a <i>union</i> of terms
1460                 <code>t<sub>1</sub>|t<sub>2</sub>|…|t<sub>n</sub></code>
1461                 is the union of the type sets of the terms.
1462         </li>
1463 </ul>
1464
1465 <pre>
1466 // An interface representing only the type int.
1467 interface {
1468         int
1469 }
1470
1471 // An interface representing all types with underlying type int.
1472 interface {
1473         ~int
1474 }
1475
1476 // An interface representing all types with underlying type int which implement the String method.
1477 interface {
1478         ~int
1479         String() string
1480 }
1481
1482 // An interface representing an empty type set: there is no type that is both an int and a string.
1483 interface {
1484         int
1485         string
1486 }
1487 </pre>
1488
1489 <p>
1490 In a term of the form <code>~T</code>, the underlying type of <code>T</code>
1491 must be itself, and <code>T</code> cannot be an interface.
1492 </p>
1493
1494 <pre>
1495 type MyInt int
1496
1497 interface {
1498         ~[]byte  // the underlying type of []byte is itself
1499         ~MyInt   // illegal: the underlying type of MyInt is not MyInt
1500         ~error   // illegal: error is an interface
1501 }
1502 </pre>
1503
1504 <p>
1505 Union elements denote unions of type sets:
1506 </p>
1507
1508 <pre>
1509 // The Floats interface represents all floating-point types
1510 // (including any named types whose underlying types are
1511 // either float32 or float64).
1512 type Floats interface {
1513         ~float32 | ~float64
1514 }
1515 </pre>
1516
1517 <p>
1518 In a union, a term cannot be a type parameter, and the type sets of all
1519 non-interface terms must be pairwise disjoint (the pairwise intersection of the type sets must be empty).
1520 Given a type parameter <code>P</code>:
1521 </p>
1522
1523 <pre>
1524 interface {
1525         P                 // illegal: the term P is a type parameter
1526         int | P           // illegal: the term P is a type parameter
1527         ~int | MyInt      // illegal: the type sets for ~int and MyInt are not disjoint (~int includes MyInt)
1528         float32 | Floats  // overlapping type sets but Floats is an interface
1529 }
1530 </pre>
1531
1532 <p>
1533 Implementation restriction:
1534 A union with more than one term cannot contain interface types
1535 with non-empty <a href="#Method_sets">method sets</a> or which
1536 are or embed the <a href="#Predeclared_identifiers">predeclared identifier</a>
1537 <code>comparable</code>.
1538 </p>
1539
1540 <p>
1541 Interfaces that contain non-interface types, terms of the form <code>~T</code>,
1542 or unions may only be used as type constraints, or as elements of other interfaces used
1543 as constraints. They cannot be the types of values or variables, or components of other,
1544 non-interface types.
1545 </p>
1546
1547 <pre>
1548 var x Floats                     // illegal: Floats is restricted by float32 and float64
1549
1550 var x interface{} = Floats(nil)  // illegal
1551
1552 type Floatish struct {
1553         f Floats                 // illegal
1554 }
1555 </pre>
1556
1557 <!-- TODO The rule below needs to be generalized to interface elements.
1558           It should be factored out and generalized to other types
1559           such as arrays and structs which are currently missing such a
1560           rule. See also #5069.
1561 -->
1562
1563 <p>
1564 An interface type <code>T</code> may not embed itself
1565 or any interface type that embeds <code>T</code>, recursively.
1566 </p>
1567
1568 <pre>
1569 // illegal: Bad cannot embed itself
1570 type Bad interface {
1571         Bad
1572 }
1573
1574 // illegal: Bad1 cannot embed itself using Bad2
1575 type Bad1 interface {
1576         Bad2
1577 }
1578 type Bad2 interface {
1579         Bad1
1580 }
1581 </pre>
1582
1583 <h3 id="Map_types">Map types</h3>
1584
1585 <p>
1586 A map is an unordered group of elements of one type, called the
1587 element type, indexed by a set of unique <i>keys</i> of another type,
1588 called the key type.
1589 The value of an uninitialized map is <code>nil</code>.
1590 </p>
1591
1592 <pre class="ebnf">
1593 MapType     = "map" "[" KeyType "]" ElementType .
1594 KeyType     = Type .
1595 </pre>
1596
1597 <p>
1598 The <a href="#Comparison_operators">comparison operators</a>
1599 <code>==</code> and <code>!=</code> must be fully defined
1600 for operands of the key type; thus the key type must not be a function, map, or
1601 slice.
1602 If the key type is an interface type, these
1603 comparison operators must be defined for the dynamic key values;
1604 failure will cause a <a href="#Run_time_panics">run-time panic</a>.
1605
1606 </p>
1607
1608 <pre>
1609 map[string]int
1610 map[*T]struct{ x, y float64 }
1611 map[string]interface{}
1612 </pre>
1613
1614 <p>
1615 The number of map elements is called its length.
1616 For a map <code>m</code>, it can be discovered using the
1617 built-in function <a href="#Length_and_capacity"><code>len</code></a>
1618 and may change during execution. Elements may be added during execution
1619 using <a href="#Assignments">assignments</a> and retrieved with
1620 <a href="#Index_expressions">index expressions</a>; they may be removed with the
1621 <a href="#Deletion_of_map_elements"><code>delete</code></a> built-in function.
1622 </p>
1623 <p>
1624 A new, empty map value is made using the built-in
1625 function <a href="#Making_slices_maps_and_channels"><code>make</code></a>,
1626 which takes the map type and an optional capacity hint as arguments:
1627 </p>
1628
1629 <pre>
1630 make(map[string]int)
1631 make(map[string]int, 100)
1632 </pre>
1633
1634 <p>
1635 The initial capacity does not bound its size:
1636 maps grow to accommodate the number of items
1637 stored in them, with the exception of <code>nil</code> maps.
1638 A <code>nil</code> map is equivalent to an empty map except that no elements
1639 may be added.
1640
1641 <h3 id="Channel_types">Channel types</h3>
1642
1643 <p>
1644 A channel provides a mechanism for
1645 <a href="#Go_statements">concurrently executing functions</a>
1646 to communicate by
1647 <a href="#Send_statements">sending</a> and
1648 <a href="#Receive_operator">receiving</a>
1649 values of a specified element type.
1650 The value of an uninitialized channel is <code>nil</code>.
1651 </p>
1652
1653 <pre class="ebnf">
1654 ChannelType = ( "chan" | "chan" "&lt;-" | "&lt;-" "chan" ) ElementType .
1655 </pre>
1656
1657 <p>
1658 The optional <code>&lt;-</code> operator specifies the channel <i>direction</i>,
1659 <i>send</i> or <i>receive</i>. If a direction is given, the channel is <i>directional</i>,
1660 otherwise it is <i>bidirectional</i>.
1661 A channel may be constrained only to send or only to receive by
1662 <a href="#Assignments">assignment</a> or
1663 explicit <a href="#Conversions">conversion</a>.
1664 </p>
1665
1666 <pre>
1667 chan T          // can be used to send and receive values of type T
1668 chan&lt;- float64  // can only be used to send float64s
1669 &lt;-chan int      // can only be used to receive ints
1670 </pre>
1671
1672 <p>
1673 The <code>&lt;-</code> operator associates with the leftmost <code>chan</code>
1674 possible:
1675 </p>
1676
1677 <pre>
1678 chan&lt;- chan int    // same as chan&lt;- (chan int)
1679 chan&lt;- &lt;-chan int  // same as chan&lt;- (&lt;-chan int)
1680 &lt;-chan &lt;-chan int  // same as &lt;-chan (&lt;-chan int)
1681 chan (&lt;-chan int)
1682 </pre>
1683
1684 <p>
1685 A new, initialized channel
1686 value can be made using the built-in function
1687 <a href="#Making_slices_maps_and_channels"><code>make</code></a>,
1688 which takes the channel type and an optional <i>capacity</i> as arguments:
1689 </p>
1690
1691 <pre>
1692 make(chan int, 100)
1693 </pre>
1694
1695 <p>
1696 The capacity, in number of elements, sets the size of the buffer in the channel.
1697 If the capacity is zero or absent, the channel is unbuffered and communication
1698 succeeds only when both a sender and receiver are ready. Otherwise, the channel
1699 is buffered and communication succeeds without blocking if the buffer
1700 is not full (sends) or not empty (receives).
1701 A <code>nil</code> channel is never ready for communication.
1702 </p>
1703
1704 <p>
1705 A channel may be closed with the built-in function
1706 <a href="#Close"><code>close</code></a>.
1707 The multi-valued assignment form of the
1708 <a href="#Receive_operator">receive operator</a>
1709 reports whether a received value was sent before
1710 the channel was closed.
1711 </p>
1712
1713 <p>
1714 A single channel may be used in
1715 <a href="#Send_statements">send statements</a>,
1716 <a href="#Receive_operator">receive operations</a>,
1717 and calls to the built-in functions
1718 <a href="#Length_and_capacity"><code>cap</code></a> and
1719 <a href="#Length_and_capacity"><code>len</code></a>
1720 by any number of goroutines without further synchronization.
1721 Channels act as first-in-first-out queues.
1722 For example, if one goroutine sends values on a channel
1723 and a second goroutine receives them, the values are
1724 received in the order sent.
1725 </p>
1726
1727 <h3 id="Type_parameters">Type parameters</h3>
1728
1729 <p>
1730 A <i>type parameter</i> is an (unqualified) type name declared in the
1731 <a href="#Type_parameter_lists">type parameter list</a> of a
1732 <a href="#Function_declarations">function declaration</a> or
1733 <a href="#Type_definitions">type definition</a>; or in the receiver specification
1734 of a <a href="#Method_declarations">method declaration</a> that is associated
1735 with a parameterized type.
1736 A type parameter acts as a place holder for an (as of yet) unknown type in the declaration;
1737 the type parameter is replaced with a <i>type argument</i> upon
1738 <a href="#Instantiations">instantiation</a> of the parameterized function or type.
1739 </p>
1740
1741 <p>
1742 The properties of a type parameter are determined by its
1743 <a href="#Type_constraints">type constraint</a>.
1744 </p>
1745
1746 <h2 id="Properties_of_types_and_values">Properties of types and values</h2>
1747
1748 <h3 id="Type_identity">Type identity</h3>
1749
1750 <p>
1751 Two types are either <i>identical</i> or <i>different</i>.
1752 </p>
1753
1754 <p>
1755 A <a href="#Types">named type</a> is always different from any other type.
1756 Otherwise, two types are identical if their <a href="#Types">underlying</a> type literals are
1757 structurally equivalent; that is, they have the same literal structure and corresponding
1758 components have identical types. In detail:
1759 </p>
1760
1761 <ul>
1762         <li>Two array types are identical if they have identical element types and
1763             the same array length.</li>
1764
1765         <li>Two slice types are identical if they have identical element types.</li>
1766
1767         <li>Two struct types are identical if they have the same sequence of fields,
1768             and if corresponding fields have the same names, and identical types,
1769             and identical tags.
1770             <a href="#Exported_identifiers">Non-exported</a> field names from different
1771             packages are always different.</li>
1772
1773         <li>Two pointer types are identical if they have identical base types.</li>
1774
1775         <li>Two function types are identical if they have the same number of parameters
1776             and result values, corresponding parameter and result types are
1777             identical, and either both functions are variadic or neither is.
1778             Parameter and result names are not required to match.</li>
1779
1780         <li>Two interface types are identical if they define the same type set.
1781         </li>
1782
1783         <li>Two map types are identical if they have identical key and element types.</li>
1784
1785         <li>Two channel types are identical if they have identical element types and
1786             the same direction.</li>
1787
1788         <li>Two <a href="#Instantiations">instantiated</a> types are identical if
1789             their defined types and all type arguments are identical.
1790         </li>
1791 </ul>
1792
1793 <p>
1794 Given the declarations
1795 </p>
1796
1797 <pre>
1798 type (
1799         A0 = []string
1800         A1 = A0
1801         A2 = struct{ a, b int }
1802         A3 = int
1803         A4 = func(A3, float64) *A0
1804         A5 = func(x int, _ float64) *[]string
1805
1806         B0 A0
1807         B1 []string
1808         B2 struct{ a, b int }
1809         B3 struct{ a, c int }
1810         B4 func(int, float64) *B0
1811         B5 func(x int, y float64) *A1
1812
1813         C0 = B0
1814         D0[P1, P2 any] struct{ x P1; y P2 }
1815         E0 = D0[int, string]
1816 )
1817 </pre>
1818
1819 <p>
1820 these types are identical:
1821 </p>
1822
1823 <pre>
1824 A0, A1, and []string
1825 A2 and struct{ a, b int }
1826 A3 and int
1827 A4, func(int, float64) *[]string, and A5
1828
1829 B0 and C0
1830 D0[int, string] and E0
1831 []int and []int
1832 struct{ a, b *T5 } and struct{ a, b *T5 }
1833 func(x int, y float64) *[]string, func(int, float64) (result *[]string), and A5
1834 </pre>
1835
1836 <p>
1837 <code>B0</code> and <code>B1</code> are different because they are new types
1838 created by distinct <a href="#Type_definitions">type definitions</a>;
1839 <code>func(int, float64) *B0</code> and <code>func(x int, y float64) *[]string</code>
1840 are different because <code>B0</code> is different from <code>[]string</code>;
1841 and <code>P1</code> and <code>P2</code> are different because they are different
1842 type parameters.
1843 <code>D0[int, string]</code> and <code>struct{ x int; y string }</code> are
1844 different because the former is an <a href="#Instantiations">instantiated</a>
1845 defined type while the latter is a type literal
1846 (but they are still <a href="#Assignability">assignable</a>).
1847 </p>
1848
1849 <h3 id="Assignability">Assignability</h3>
1850
1851 <p>
1852 A value <code>x</code> is <i>assignable</i> to a <a href="#Variables">variable</a> of type <code>T</code>
1853 ("<code>x</code> is assignable to <code>T</code>") if one of the following conditions applies:
1854 </p>
1855
1856 <ul>
1857 <li>
1858 <code>x</code>'s type is identical to <code>T</code>.
1859 </li>
1860 <li>
1861 <code>x</code>'s type <code>V</code> and <code>T</code> have identical
1862 <a href="#Underlying_types">underlying types</a> and at least one of <code>V</code>
1863 or <code>T</code> is not a <a href="#Types">named type</a>.
1864 </li>
1865 <li>
1866 <code>x</code>'s type <code>V</code> and <code>T</code> are channel types with
1867 identical element types, <code>V</code> is a bidirectional channel,
1868 and at least one of <code>V</code> or <code>T</code> is not a <a href="#Types">named type</a>.
1869 </li>
1870 <li>
1871 <code>T</code> is an interface type, but not a type parameter, and
1872 <code>x</code> <a href="#Interface_types">implements</a> <code>T</code>.
1873 </li>
1874 <li>
1875 <code>x</code> is the predeclared identifier <code>nil</code> and <code>T</code>
1876 is a pointer, function, slice, map, channel, or interface type,
1877 but not a type parameter.
1878 </li>
1879 <li>
1880 <code>x</code> is an untyped <a href="#Constants">constant</a>
1881 <a href="#Representability">representable</a>
1882 by a value of type <code>T</code>.
1883 </li>
1884 </ul>
1885
1886 <p>
1887 Additionally, if <code>x's</code> type <code>V</code> or <code>T</code> are type parameters
1888 with <a href="#Structure_of_interfaces">specific types</a>, <code>x</code>
1889 is assignable to a variable of type <code>T</code> if one of the following conditions applies:
1890 </p>
1891
1892 <ul>
1893 <li>
1894 <code>x</code> is the predeclared identifier <code>nil</code>, <code>T</code> is
1895 a type parameter, and <code>x</code> is assignable to each specific type of
1896 <code>T</code>.
1897 </li>
1898 <li>
1899 <code>V</code> is not a <a href="#Types">named type</a>, <code>T</code> is
1900 a type parameter, and <code>x</code> is assignable to each specific type of
1901 <code>T</code>.
1902 </li>
1903 <li>
1904 <code>V</code> is a type parameter and <code>T</code> is not a named type,
1905 and values of each specific type of <code>V</code> are assignable
1906 to <code>T</code>.
1907 </li>
1908 </ul>
1909
1910 <h3 id="Representability">Representability</h3>
1911
1912 <p>
1913 A <a href="#Constants">constant</a> <code>x</code> is <i>representable</i>
1914 by a value of type <code>T</code>,
1915 where <code>T</code> is not a <a href="#Type_parameters">type parameter</a>,
1916 if one of the following conditions applies:
1917 </p>
1918
1919 <ul>
1920 <li>
1921 <code>x</code> is in the set of values <a href="#Types">determined</a> by <code>T</code>.
1922 </li>
1923
1924 <li>
1925 <code>T</code> is a floating-point type and <code>x</code> can be rounded to <code>T</code>'s
1926 precision without overflow. Rounding uses IEEE 754 round-to-even rules but with an IEEE
1927 negative zero further simplified to an unsigned zero. Note that constant values never result
1928 in an IEEE negative zero, NaN, or infinity.
1929 </li>
1930
1931 <li>
1932 <code>T</code> is a complex type, and <code>x</code>'s
1933 <a href="#Complex_numbers">components</a> <code>real(x)</code> and <code>imag(x)</code>
1934 are representable by values of <code>T</code>'s component type (<code>float32</code> or
1935 <code>float64</code>).
1936 </li>
1937 </ul>
1938
1939 <p>
1940 If <code>T</code> is a type parameter with <a href="#Structure_of_interfaces">specific types</a>,
1941 <code>x</code> is representable by a value of type <code>T</code> if <code>x</code> is representable
1942 by a value of each specific type of <code>T</code>.
1943 </p>
1944
1945 <pre>
1946 x                   T           x is representable by a value of T because
1947
1948 'a'                 byte        97 is in the set of byte values
1949 97                  rune        rune is an alias for int32, and 97 is in the set of 32-bit integers
1950 "foo"               string      "foo" is in the set of string values
1951 1024                int16       1024 is in the set of 16-bit integers
1952 42.0                byte        42 is in the set of unsigned 8-bit integers
1953 1e10                uint64      10000000000 is in the set of unsigned 64-bit integers
1954 2.718281828459045   float32     2.718281828459045 rounds to 2.7182817 which is in the set of float32 values
1955 -1e-1000            float64     -1e-1000 rounds to IEEE -0.0 which is further simplified to 0.0
1956 0i                  int         0 is an integer value
1957 (42 + 0i)           float32     42.0 (with zero imaginary part) is in the set of float32 values
1958 </pre>
1959
1960 <pre>
1961 x                   T           x is not representable by a value of T because
1962
1963 0                   bool        0 is not in the set of boolean values
1964 'a'                 string      'a' is a rune, it is not in the set of string values
1965 1024                byte        1024 is not in the set of unsigned 8-bit integers
1966 -1                  uint16      -1 is not in the set of unsigned 16-bit integers
1967 1.1                 int         1.1 is not an integer value
1968 42i                 float32     (0 + 42i) is not in the set of float32 values
1969 1e1000              float64     1e1000 overflows to IEEE +Inf after rounding
1970 </pre>
1971
1972 <h3 id="Structure_of_interfaces">Structure of interfaces</h3>
1973
1974 <p>
1975 An interface specification which contains <a href="#Interface_types">type elements</a>
1976 defines a (possibly empty) set of <i>specific types</i>.
1977 Loosely speaking, these are the types <code>T</code> that appear in the
1978 interface definition in terms of the form <code>T</code>, <code>~T</code>,
1979 or in unions of such terms.
1980 </p>
1981
1982 <p>
1983 More precisely, for a given interface, the set 𝑆 of specific types is defined as follows:
1984 </p>
1985
1986 <ul>
1987         <li>For an interface with no type elements, 𝑆 is the empty set.
1988         </li>
1989
1990         <li>For an interface with type elements, 𝑆 is the intersection
1991                 of the specific types of its type elements.
1992         </li>
1993
1994         <li>For a non-interface type term <code>T</code>
1995                 or <code>~T</code>, 𝑆 is the set consisting of the type <code>T</code>.
1996         </li>
1997
1998         <li>For a <i>union</i> of terms
1999                 <code>t<sub>1</sub>|t<sub>2</sub>|…|t<sub>n</sub></code>,
2000                 𝑆 is the union of the specific types of the terms.
2001         </li>
2002 </ul>
2003
2004 <p>
2005 If 𝑆 is empty, the interface has <i>no specific types</i>.
2006 An interface may have specific types even if its <a href="#Interface_types">type set</a>
2007 is empty.
2008 </p>
2009
2010 <p>
2011 Examples of interfaces with their specific types:
2012 </p>
2013
2014 <pre>
2015 type Celsius float32
2016 type Kelvin  float32
2017
2018 interface{}                    // no specific types
2019 interface{ int }               // int
2020 interface{ ~string }           // string
2021 interface{ int|~string }       // int, string
2022 interface{ Celsius|Kelvin }    // Celsius, Kelvin
2023 interface{ int; m() }          // int (but type set is empty because int has no method m)
2024 interface{ int; any }          // no specific types (intersection is empty)
2025 interface{ int; string }       // no specific types (intersection is empty)
2026 </pre>
2027
2028 <p>
2029 An interface <code>T</code> is called <i>structural</i> if one of the following
2030 conditions is satisfied:
2031 </p>
2032
2033 <ol>
2034 <li>
2035 There is a single type <code>U</code> which is the <a href="#Underlying_types">underlying type</a>
2036 of all types in the <a href="#Interface_types">type set</a> of <code>T</code>; or
2037 </li>
2038 <li>
2039 the type set of <code>T</code> contains only <a href="#Channel_types">channel types</a>
2040 with identical element type <code>E</code>, and all directional channels have the same
2041 direction.
2042 </li>
2043 </ol>
2044
2045 <p>
2046 A structural interface has a <i>structural type</i> which is, depending on the
2047 condition that is satisfied, either:
2048 </p>
2049
2050 <ol>
2051 <li>
2052 the type <code>U</code>; or
2053 </li>
2054 <li>
2055 the type <code>chan E</code> if <code>T</code> contains only bidirectional
2056 channels, or the type <code>chan&lt;- E</code> or <code>&lt;-chan E</code>
2057 depending on the direction of the directional channels present.
2058 </li>
2059 </ol>
2060
2061 <p>
2062 Examples of structural interfaces with their structural types:
2063 </p>
2064
2065 <pre>
2066 interface{ int }                          // int
2067 interface{ Celsius|Kelvin }               // float32
2068 interface{ ~chan int }                    // chan int
2069 interface{ ~chan int|~chan&lt;- int }        // chan&lt;- int
2070 interface{ ~[]*data; String() string }    // []*data
2071 </pre>
2072
2073 <p>
2074 Examples of non-structural interfaces:
2075 </p>
2076
2077 <pre>
2078 interface{}                               // no single underlying type
2079 interface{ Celsius|float64 }              // no single underlying type
2080 interface{ chan int | chan&lt;- string }     // channels have different element types
2081 interface{ &lt;-chan int | chan&lt;- int }      // directional channels have different directions
2082 </pre>
2083
2084 <h2 id="Blocks">Blocks</h2>
2085
2086 <p>
2087 A <i>block</i> is a possibly empty sequence of declarations and statements
2088 within matching brace brackets.
2089 </p>
2090
2091 <pre class="ebnf">
2092 Block = "{" StatementList "}" .
2093 StatementList = { Statement ";" } .
2094 </pre>
2095
2096 <p>
2097 In addition to explicit blocks in the source code, there are implicit blocks:
2098 </p>
2099
2100 <ol>
2101         <li>The <i>universe block</i> encompasses all Go source text.</li>
2102
2103         <li>Each <a href="#Packages">package</a> has a <i>package block</i> containing all
2104             Go source text for that package.</li>
2105
2106         <li>Each file has a <i>file block</i> containing all Go source text
2107             in that file.</li>
2108
2109         <li>Each <a href="#If_statements">"if"</a>,
2110             <a href="#For_statements">"for"</a>, and
2111             <a href="#Switch_statements">"switch"</a>
2112             statement is considered to be in its own implicit block.</li>
2113
2114         <li>Each clause in a <a href="#Switch_statements">"switch"</a>
2115             or <a href="#Select_statements">"select"</a> statement
2116             acts as an implicit block.</li>
2117 </ol>
2118
2119 <p>
2120 Blocks nest and influence <a href="#Declarations_and_scope">scoping</a>.
2121 </p>
2122
2123
2124 <h2 id="Declarations_and_scope">Declarations and scope</h2>
2125
2126 <p>
2127 A <i>declaration</i> binds a non-<a href="#Blank_identifier">blank</a> identifier to a
2128 <a href="#Constant_declarations">constant</a>,
2129 <a href="#Type_declarations">type</a>,
2130 <a href="#Variable_declarations">variable</a>,
2131 <a href="#Function_declarations">function</a>,
2132 <a href="#Labeled_statements">label</a>, or
2133 <a href="#Import_declarations">package</a>.
2134 Every identifier in a program must be declared.
2135 No identifier may be declared twice in the same block, and
2136 no identifier may be declared in both the file and package block.
2137 </p>
2138
2139 <p>
2140 The <a href="#Blank_identifier">blank identifier</a> may be used like any other identifier
2141 in a declaration, but it does not introduce a binding and thus is not declared.
2142 In the package block, the identifier <code>init</code> may only be used for
2143 <a href="#Package_initialization"><code>init</code> function</a> declarations,
2144 and like the blank identifier it does not introduce a new binding.
2145 </p>
2146
2147 <pre class="ebnf">
2148 Declaration   = ConstDecl | TypeDecl | VarDecl .
2149 TopLevelDecl  = Declaration | FunctionDecl | MethodDecl .
2150 </pre>
2151
2152 <p>
2153 The <i>scope</i> of a declared identifier is the extent of source text in which
2154 the identifier denotes the specified constant, type, variable, function, label, or package.
2155 </p>
2156
2157 <p>
2158 Go is lexically scoped using <a href="#Blocks">blocks</a>:
2159 </p>
2160
2161 <ol>
2162         <li>The scope of a <a href="#Predeclared_identifiers">predeclared identifier</a> is the universe block.</li>
2163
2164         <li>The scope of an identifier denoting a constant, type, variable,
2165             or function (but not method) declared at top level (outside any
2166             function) is the package block.</li>
2167
2168         <li>The scope of the package name of an imported package is the file block
2169             of the file containing the import declaration.</li>
2170
2171         <li>The scope of an identifier denoting a method receiver, function parameter,
2172             or result variable is the function body.</li>
2173
2174         <li>The scope of an identifier denoting a type parameter of a type-parameterized function
2175             or declared by a method receiver is the function body and all parameter lists of the
2176             function.
2177         </li>
2178
2179         <li>The scope of an identifier denoting a type parameter of a parameterized type
2180             begins after the name of the parameterized type and ends at the end
2181             of the TypeSpec.</li>
2182
2183         <li>The scope of a constant or variable identifier declared
2184             inside a function begins at the end of the ConstSpec or VarSpec
2185             (ShortVarDecl for short variable declarations)
2186             and ends at the end of the innermost containing block.</li>
2187
2188         <li>The scope of a type identifier declared inside a function
2189             begins at the identifier in the TypeSpec
2190             and ends at the end of the innermost containing block.</li>
2191 </ol>
2192
2193 <p>
2194 An identifier declared in a block may be redeclared in an inner block.
2195 While the identifier of the inner declaration is in scope, it denotes
2196 the entity declared by the inner declaration.
2197 </p>
2198
2199 <p>
2200 The <a href="#Package_clause">package clause</a> is not a declaration; the package name
2201 does not appear in any scope. Its purpose is to identify the files belonging
2202 to the same <a href="#Packages">package</a> and to specify the default package name for import
2203 declarations.
2204 </p>
2205
2206
2207 <h3 id="Label_scopes">Label scopes</h3>
2208
2209 <p>
2210 Labels are declared by <a href="#Labeled_statements">labeled statements</a> and are
2211 used in the <a href="#Break_statements">"break"</a>,
2212 <a href="#Continue_statements">"continue"</a>, and
2213 <a href="#Goto_statements">"goto"</a> statements.
2214 It is illegal to define a label that is never used.
2215 In contrast to other identifiers, labels are not block scoped and do
2216 not conflict with identifiers that are not labels. The scope of a label
2217 is the body of the function in which it is declared and excludes
2218 the body of any nested function.
2219 </p>
2220
2221
2222 <h3 id="Blank_identifier">Blank identifier</h3>
2223
2224 <p>
2225 The <i>blank identifier</i> is represented by the underscore character <code>_</code>.
2226 It serves as an anonymous placeholder instead of a regular (non-blank)
2227 identifier and has special meaning in <a href="#Declarations_and_scope">declarations</a>,
2228 as an <a href="#Operands">operand</a>, and in <a href="#Assignments">assignments</a>.
2229 </p>
2230
2231
2232 <h3 id="Predeclared_identifiers">Predeclared identifiers</h3>
2233
2234 <p>
2235 The following identifiers are implicitly declared in the
2236 <a href="#Blocks">universe block</a>:
2237 </p>
2238 <pre class="grammar">
2239 Types:
2240         any bool byte comparable
2241         complex64 complex128 error float32 float64
2242         int int8 int16 int32 int64 rune string
2243         uint uint8 uint16 uint32 uint64 uintptr
2244
2245 Constants:
2246         true false iota
2247
2248 Zero value:
2249         nil
2250
2251 Functions:
2252         append cap close complex copy delete imag len
2253         make new panic print println real recover
2254 </pre>
2255
2256
2257 <h3 id="Exported_identifiers">Exported identifiers</h3>
2258
2259 <p>
2260 An identifier may be <i>exported</i> to permit access to it from another package.
2261 An identifier is exported if both:
2262 </p>
2263 <ol>
2264         <li>the first character of the identifier's name is a Unicode upper case
2265         letter (Unicode class "Lu"); and</li>
2266         <li>the identifier is declared in the <a href="#Blocks">package block</a>
2267         or it is a <a href="#Struct_types">field name</a> or
2268         <a href="#MethodName">method name</a>.</li>
2269 </ol>
2270 <p>
2271 All other identifiers are not exported.
2272 </p>
2273
2274 <h3 id="Uniqueness_of_identifiers">Uniqueness of identifiers</h3>
2275
2276 <p>
2277 Given a set of identifiers, an identifier is called <i>unique</i> if it is
2278 <i>different</i> from every other in the set.
2279 Two identifiers are different if they are spelled differently, or if they
2280 appear in different <a href="#Packages">packages</a> and are not
2281 <a href="#Exported_identifiers">exported</a>. Otherwise, they are the same.
2282 </p>
2283
2284 <h3 id="Constant_declarations">Constant declarations</h3>
2285
2286 <p>
2287 A constant declaration binds a list of identifiers (the names of
2288 the constants) to the values of a list of <a href="#Constant_expressions">constant expressions</a>.
2289 The number of identifiers must be equal
2290 to the number of expressions, and the <i>n</i>th identifier on
2291 the left is bound to the value of the <i>n</i>th expression on the
2292 right.
2293 </p>
2294
2295 <pre class="ebnf">
2296 ConstDecl      = "const" ( ConstSpec | "(" { ConstSpec ";" } ")" ) .
2297 ConstSpec      = IdentifierList [ [ Type ] "=" ExpressionList ] .
2298
2299 IdentifierList = identifier { "," identifier } .
2300 ExpressionList = Expression { "," Expression } .
2301 </pre>
2302
2303 <p>
2304 If the type is present, all constants take the type specified, and
2305 the expressions must be <a href="#Assignability">assignable</a> to that type.
2306 If the type is omitted, the constants take the
2307 individual types of the corresponding expressions.
2308 If the expression values are untyped <a href="#Constants">constants</a>,
2309 the declared constants remain untyped and the constant identifiers
2310 denote the constant values. For instance, if the expression is a
2311 floating-point literal, the constant identifier denotes a floating-point
2312 constant, even if the literal's fractional part is zero.
2313 </p>
2314
2315 <pre>
2316 const Pi float64 = 3.14159265358979323846
2317 const zero = 0.0         // untyped floating-point constant
2318 const (
2319         size int64 = 1024
2320         eof        = -1  // untyped integer constant
2321 )
2322 const a, b, c = 3, 4, "foo"  // a = 3, b = 4, c = "foo", untyped integer and string constants
2323 const u, v float32 = 0, 3    // u = 0.0, v = 3.0
2324 </pre>
2325
2326 <p>
2327 Within a parenthesized <code>const</code> declaration list the
2328 expression list may be omitted from any but the first ConstSpec.
2329 Such an empty list is equivalent to the textual substitution of the
2330 first preceding non-empty expression list and its type if any.
2331 Omitting the list of expressions is therefore equivalent to
2332 repeating the previous list.  The number of identifiers must be equal
2333 to the number of expressions in the previous list.
2334 Together with the <a href="#Iota"><code>iota</code> constant generator</a>
2335 this mechanism permits light-weight declaration of sequential values:
2336 </p>
2337
2338 <pre>
2339 const (
2340         Sunday = iota
2341         Monday
2342         Tuesday
2343         Wednesday
2344         Thursday
2345         Friday
2346         Partyday
2347         numberOfDays  // this constant is not exported
2348 )
2349 </pre>
2350
2351
2352 <h3 id="Iota">Iota</h3>
2353
2354 <p>
2355 Within a <a href="#Constant_declarations">constant declaration</a>, the predeclared identifier
2356 <code>iota</code> represents successive untyped integer <a href="#Constants">
2357 constants</a>. Its value is the index of the respective <a href="#ConstSpec">ConstSpec</a>
2358 in that constant declaration, starting at zero.
2359 It can be used to construct a set of related constants:
2360 </p>
2361
2362 <pre>
2363 const (
2364         c0 = iota  // c0 == 0
2365         c1 = iota  // c1 == 1
2366         c2 = iota  // c2 == 2
2367 )
2368
2369 const (
2370         a = 1 &lt;&lt; iota  // a == 1  (iota == 0)
2371         b = 1 &lt;&lt; iota  // b == 2  (iota == 1)
2372         c = 3          // c == 3  (iota == 2, unused)
2373         d = 1 &lt;&lt; iota  // d == 8  (iota == 3)
2374 )
2375
2376 const (
2377         u         = iota * 42  // u == 0     (untyped integer constant)
2378         v float64 = iota * 42  // v == 42.0  (float64 constant)
2379         w         = iota * 42  // w == 84    (untyped integer constant)
2380 )
2381
2382 const x = iota  // x == 0
2383 const y = iota  // y == 0
2384 </pre>
2385
2386 <p>
2387 By definition, multiple uses of <code>iota</code> in the same ConstSpec all have the same value:
2388 </p>
2389
2390 <pre>
2391 const (
2392         bit0, mask0 = 1 &lt;&lt; iota, 1&lt;&lt;iota - 1  // bit0 == 1, mask0 == 0  (iota == 0)
2393         bit1, mask1                           // bit1 == 2, mask1 == 1  (iota == 1)
2394         _, _                                  //                        (iota == 2, unused)
2395         bit3, mask3                           // bit3 == 8, mask3 == 7  (iota == 3)
2396 )
2397 </pre>
2398
2399 <p>
2400 This last example exploits the <a href="#Constant_declarations">implicit repetition</a>
2401 of the last non-empty expression list.
2402 </p>
2403
2404
2405 <h3 id="Type_declarations">Type declarations</h3>
2406
2407 <p>
2408 A type declaration binds an identifier, the <i>type name</i>, to a <a href="#Types">type</a>.
2409 Type declarations come in two forms: alias declarations and type definitions.
2410 </p>
2411
2412 <pre class="ebnf">
2413 TypeDecl = "type" ( TypeSpec | "(" { TypeSpec ";" } ")" ) .
2414 TypeSpec = AliasDecl | TypeDef .
2415 </pre>
2416
2417 <h4 id="Alias_declarations">Alias declarations</h4>
2418
2419 <p>
2420 An alias declaration binds an identifier to the given type.
2421 </p>
2422
2423 <pre class="ebnf">
2424 AliasDecl = identifier "=" Type .
2425 </pre>
2426
2427 <p>
2428 Within the <a href="#Declarations_and_scope">scope</a> of
2429 the identifier, it serves as an <i>alias</i> for the type.
2430 </p>
2431
2432 <pre>
2433 type (
2434         nodeList = []*Node  // nodeList and []*Node are identical types
2435         Polar    = polar    // Polar and polar denote identical types
2436 )
2437 </pre>
2438
2439
2440 <h4 id="Type_definitions">Type definitions</h4>
2441
2442 <p>
2443 A type definition creates a new, distinct type with the same
2444 <a href="#Types">underlying type</a> and operations as the given type
2445 and binds an identifier, the <i>type name</i>, to it.
2446 </p>
2447
2448 <pre class="ebnf">
2449 TypeDef = identifier [ TypeParameters ] Type .
2450 </pre>
2451
2452 <p>
2453 The new type is called a <i>defined type</i>.
2454 It is <a href="#Type_identity">different</a> from any other type,
2455 including the type it is created from.
2456 </p>
2457
2458 <pre>
2459 type (
2460         Point struct{ x, y float64 }  // Point and struct{ x, y float64 } are different types
2461         polar Point                   // polar and Point denote different types
2462 )
2463
2464 type TreeNode struct {
2465         left, right *TreeNode
2466         value *Comparable
2467 }
2468
2469 type Block interface {
2470         BlockSize() int
2471         Encrypt(src, dst []byte)
2472         Decrypt(src, dst []byte)
2473 }
2474 </pre>
2475
2476 <p>
2477 A defined type may have <a href="#Method_declarations">methods</a> associated with it.
2478 It does not inherit any methods bound to the given type,
2479 but the <a href="#Method_sets">method set</a>
2480 of an interface type or of elements of a composite type remains unchanged:
2481 </p>
2482
2483 <pre>
2484 // A Mutex is a data type with two methods, Lock and Unlock.
2485 type Mutex struct         { /* Mutex fields */ }
2486 func (m *Mutex) Lock()    { /* Lock implementation */ }
2487 func (m *Mutex) Unlock()  { /* Unlock implementation */ }
2488
2489 // NewMutex has the same composition as Mutex but its method set is empty.
2490 type NewMutex Mutex
2491
2492 // The method set of PtrMutex's underlying type *Mutex remains unchanged,
2493 // but the method set of PtrMutex is empty.
2494 type PtrMutex *Mutex
2495
2496 // The method set of *PrintableMutex contains the methods
2497 // Lock and Unlock bound to its embedded field Mutex.
2498 type PrintableMutex struct {
2499         Mutex
2500 }
2501
2502 // MyBlock is an interface type that has the same method set as Block.
2503 type MyBlock Block
2504 </pre>
2505
2506 <p>
2507 Type definitions may be used to define different boolean, numeric,
2508 or string types and associate methods with them:
2509 </p>
2510
2511 <pre>
2512 type TimeZone int
2513
2514 const (
2515         EST TimeZone = -(5 + iota)
2516         CST
2517         MST
2518         PST
2519 )
2520
2521 func (tz TimeZone) String() string {
2522         return fmt.Sprintf("GMT%+dh", tz)
2523 }
2524 </pre>
2525
2526 <p>
2527 If the type definition specifies <a href="#Type_parameter_lists">type parameters</a>,
2528 the type name denotes a <i>parameterized type</i>.
2529 Parameterized types must be <a href="#Instantiations">instantiated</a> when they
2530 are used.
2531 </p>
2532
2533 <pre>
2534 type List[T any] struct {
2535         next  *List[T]
2536         value T
2537 }
2538
2539 type Tree[T constraints.Ordered] struct {
2540         left, right *Tree[T]
2541         value       T
2542 }
2543 </pre>
2544
2545 <p>
2546 The given type cannot be a type parameter in a type definition.
2547 </p>
2548
2549 <pre>
2550 type T[P any] P    // illegal: P is a type parameter
2551
2552 func f[T any]() {
2553         type L T   // illegal: T is a type parameter declared by the enclosing function
2554 }
2555 </pre>
2556
2557 <p>
2558 A parameterized type may also have methods associated with it. In this case,
2559 the method receivers must declare the same number of type parameters as
2560 present in the parameterized type definition.
2561 </p>
2562
2563 <pre>
2564 // The method Len returns the number of elements in the linked list l.
2565 func (l *List[T]) Len() int  { … }
2566 </pre>
2567
2568 <h3 id="Type_parameter_lists">Type parameter lists</h3>
2569
2570 <p>
2571 A type parameter list declares the <a href="#Type_parameters">type parameters</a>
2572 in a type-parameterized function or type declaration.
2573 The type parameter list looks like an ordinary <a href="#Function_types">function parameter list</a>
2574 except that the type parameter names must all be present and the list is enclosed
2575 in square brackets rather than parentheses.
2576 </p>
2577
2578 <pre class="ebnf">
2579 TypeParameters  = "[" TypeParamList [ "," ] "]" .
2580 TypeParamList   = TypeParamDecl { "," TypeParamDecl } .
2581 TypeParamDecl   = IdentifierList TypeConstraint .
2582 </pre>
2583
2584 <p>
2585 Each identifier declares a type parameter.
2586 All non-blank names in the list must be unique.
2587 Each type parameter is a new and different <a href="#Types">named type</a>.
2588 </p>
2589
2590 <pre>
2591 [P any]
2592 [S interface{ ~[]byte|string }]
2593 [S ~[]E, E any]
2594 [P Constraint[int]]
2595 [_ any]
2596 </pre>
2597
2598 <p>
2599 Just as each ordinary function parameter has a parameter type, each type parameter
2600 has a corresponding (meta-)type which is called its
2601 <a href="#Type_constraints"><i>type constraint</i></a>.
2602 </p>
2603
2604 <p>
2605 A parsing ambiguity arises when the type parameter list for a parameterized type
2606 declares a single type parameter with a type constraint of the form <code>*C</code>
2607 or <code>(C)</code> where <code>C</code> is not a (possibly parenthesized)
2608 <a href="#Types">type literal</a>:
2609 </p>
2610
2611 <pre>
2612 type T[P *C] …
2613 type T[P (C)] …
2614 </pre>
2615
2616 <p>
2617 In these rare cases, the type parameter declaration is indistinguishable from
2618 the expressions <code>P*C</code> or <code>P(C)</code> and the type declaration
2619 is parsed as an array type declaration.
2620 To resolve the ambiguity, embed the constraint in an interface or use a trailing
2621 comma:
2622 </p>
2623
2624 <pre>
2625 type T[P interface{*C}] …
2626 type T[P *C,] …
2627 </pre>
2628
2629 <h4 id="Type_constraints">Type constraints</h4>
2630
2631 <p>
2632 A type constraint is an <a href="#Interface_types">interface</a> that defines the
2633 set of permissible type arguments for the respective type parameter and controls the
2634 operations supported by values of that type parameter.
2635 </p>
2636
2637 <pre class="ebnf">
2638 TypeConstraint = TypeElem .
2639 </pre>
2640
2641 <p>
2642 If the constraint is an interface literal containing exactly one embedded type element
2643 <code>interface{E}</code>, in a type parameter list the enclosing <code>interface{ … }</code>
2644 may be omitted for convenience:
2645 </p>
2646
2647 <pre>
2648 [T *P]                             // = [T interface{*P}]
2649 [T ~int]                           // = [T interface{~int}]
2650 [T int|string]                     // = [T interface{int|string}]
2651 type Constraint ~int               // illegal: ~int is not inside a type parameter list
2652 </pre>
2653
2654 <h3 id="Variable_declarations">Variable declarations</h3>
2655
2656 <p>
2657 A variable declaration creates one or more <a href="#Variables">variables</a>,
2658 binds corresponding identifiers to them, and gives each a type and an initial value.
2659 </p>
2660
2661 <pre class="ebnf">
2662 VarDecl     = "var" ( VarSpec | "(" { VarSpec ";" } ")" ) .
2663 VarSpec     = IdentifierList ( Type [ "=" ExpressionList ] | "=" ExpressionList ) .
2664 </pre>
2665
2666 <pre>
2667 var i int
2668 var U, V, W float64
2669 var k = 0
2670 var x, y float32 = -1, -2
2671 var (
2672         i       int
2673         u, v, s = 2.0, 3.0, "bar"
2674 )
2675 var re, im = complexSqrt(-1)
2676 var _, found = entries[name]  // map lookup; only interested in "found"
2677 </pre>
2678
2679 <p>
2680 If a list of expressions is given, the variables are initialized
2681 with the expressions following the rules for <a href="#Assignments">assignments</a>.
2682 Otherwise, each variable is initialized to its <a href="#The_zero_value">zero value</a>.
2683 </p>
2684
2685 <p>
2686 If a type is present, each variable is given that type.
2687 Otherwise, each variable is given the type of the corresponding
2688 initialization value in the assignment.
2689 If that value is an untyped constant, it is first implicitly
2690 <a href="#Conversions">converted</a> to its <a href="#Constants">default type</a>;
2691 if it is an untyped boolean value, it is first implicitly converted to type <code>bool</code>.
2692 The predeclared value <code>nil</code> cannot be used to initialize a variable
2693 with no explicit type.
2694 </p>
2695
2696 <pre>
2697 var d = math.Sin(0.5)  // d is float64
2698 var i = 42             // i is int
2699 var t, ok = x.(T)      // t is T, ok is bool
2700 var n = nil            // illegal
2701 </pre>
2702
2703 <p>
2704 Implementation restriction: A compiler may make it illegal to declare a variable
2705 inside a <a href="#Function_declarations">function body</a> if the variable is
2706 never used.
2707 </p>
2708
2709 <h3 id="Short_variable_declarations">Short variable declarations</h3>
2710
2711 <p>
2712 A <i>short variable declaration</i> uses the syntax:
2713 </p>
2714
2715 <pre class="ebnf">
2716 ShortVarDecl = IdentifierList ":=" ExpressionList .
2717 </pre>
2718
2719 <p>
2720 It is shorthand for a regular <a href="#Variable_declarations">variable declaration</a>
2721 with initializer expressions but no types:
2722 </p>
2723
2724 <pre class="grammar">
2725 "var" IdentifierList = ExpressionList .
2726 </pre>
2727
2728 <pre>
2729 i, j := 0, 10
2730 f := func() int { return 7 }
2731 ch := make(chan int)
2732 r, w, _ := os.Pipe()  // os.Pipe() returns a connected pair of Files and an error, if any
2733 _, y, _ := coord(p)   // coord() returns three values; only interested in y coordinate
2734 </pre>
2735
2736 <p>
2737 Unlike regular variable declarations, a short variable declaration may <i>redeclare</i>
2738 variables provided they were originally declared earlier in the same block
2739 (or the parameter lists if the block is the function body) with the same type,
2740 and at least one of the non-<a href="#Blank_identifier">blank</a> variables is new.
2741 As a consequence, redeclaration can only appear in a multi-variable short declaration.
2742 Redeclaration does not introduce a new variable; it just assigns a new value to the original.
2743 </p>
2744
2745 <pre>
2746 field1, offset := nextField(str, 0)
2747 field2, offset := nextField(str, offset)  // redeclares offset
2748 a, a := 1, 2                              // illegal: double declaration of a or no new variable if a was declared elsewhere
2749 </pre>
2750
2751 <p>
2752 Short variable declarations may appear only inside functions.
2753 In some contexts such as the initializers for
2754 <a href="#If_statements">"if"</a>,
2755 <a href="#For_statements">"for"</a>, or
2756 <a href="#Switch_statements">"switch"</a> statements,
2757 they can be used to declare local temporary variables.
2758 </p>
2759
2760 <h3 id="Function_declarations">Function declarations</h3>
2761
2762 <!--
2763         Given the importance of functions, this section has always
2764         been woefully underdeveloped. Would be nice to expand this
2765         a bit.
2766 -->
2767
2768 <p>
2769 A function declaration binds an identifier, the <i>function name</i>,
2770 to a function.
2771 </p>
2772
2773 <pre class="ebnf">
2774 FunctionDecl = "func" FunctionName [ TypeParameters ] Signature [ FunctionBody ] .
2775 FunctionName = identifier .
2776 FunctionBody = Block .
2777 </pre>
2778
2779 <p>
2780 If the function's <a href="#Function_types">signature</a> declares
2781 result parameters, the function body's statement list must end in
2782 a <a href="#Terminating_statements">terminating statement</a>.
2783 </p>
2784
2785 <pre>
2786 func IndexRune(s string, r rune) int {
2787         for i, c := range s {
2788                 if c == r {
2789                         return i
2790                 }
2791         }
2792         // invalid: missing return statement
2793 }
2794 </pre>
2795
2796 <p>
2797 If the function declaration specifies <a href="#Type_parameter_lists">type parameters</a>,
2798 the function name denotes a <i>type-parameterized function</i>.
2799 Type-parameterized functions must be <a href="#Instantiations">instantiated</a> when they
2800 are used.
2801 </p>
2802
2803 <pre>
2804 func min[T constraints.Ordered](x, y T) T {
2805         if x &lt; y {
2806                 return x
2807         }
2808         return y
2809 }
2810 </pre>
2811
2812 <p>
2813 A function declaration without type parameters may omit the body.
2814 Such a declaration provides the signature for a function implemented outside Go,
2815 such as an assembly routine.
2816 </p>
2817
2818 <pre>
2819 func flushICache(begin, end uintptr)  // implemented externally
2820 </pre>
2821
2822 <h3 id="Method_declarations">Method declarations</h3>
2823
2824 <p>
2825 A method is a <a href="#Function_declarations">function</a> with a <i>receiver</i>.
2826 A method declaration binds an identifier, the <i>method name</i>, to a method,
2827 and associates the method with the receiver's <i>base type</i>.
2828 </p>
2829
2830 <pre class="ebnf">
2831 MethodDecl = "func" Receiver MethodName Signature [ FunctionBody ] .
2832 Receiver   = Parameters .
2833 </pre>
2834
2835 <p>
2836 The receiver is specified via an extra parameter section preceding the method
2837 name. That parameter section must declare a single non-variadic parameter, the receiver.
2838 Its type must be a <a href="#Type_definitions">defined</a> type <code>T</code> or a
2839 pointer to a defined type <code>T</code>, possibly followed by a list of type parameter
2840 names <code>[P1, P2, …]</code> enclosed in square brackets.
2841 <code>T</code> is called the receiver <i>base type</i>. A receiver base type cannot be
2842 a pointer or interface type and it must be defined in the same package as the method.
2843 The method is said to be <i>bound</i> to its receiver base type and the method name
2844 is visible only within <a href="#Selectors">selectors</a> for type <code>T</code>
2845 or <code>*T</code>.
2846 </p>
2847
2848 <p>
2849 A non-<a href="#Blank_identifier">blank</a> receiver identifier must be
2850 <a href="#Uniqueness_of_identifiers">unique</a> in the method signature.
2851 If the receiver's value is not referenced inside the body of the method,
2852 its identifier may be omitted in the declaration. The same applies in
2853 general to parameters of functions and methods.
2854 </p>
2855
2856 <p>
2857 For a base type, the non-blank names of methods bound to it must be unique.
2858 If the base type is a <a href="#Struct_types">struct type</a>,
2859 the non-blank method and field names must be distinct.
2860 </p>
2861
2862 <p>
2863 Given defined type <code>Point</code>, the declarations
2864 </p>
2865
2866 <pre>
2867 func (p *Point) Length() float64 {
2868         return math.Sqrt(p.x * p.x + p.y * p.y)
2869 }
2870
2871 func (p *Point) Scale(factor float64) {
2872         p.x *= factor
2873         p.y *= factor
2874 }
2875 </pre>
2876
2877 <p>
2878 bind the methods <code>Length</code> and <code>Scale</code>,
2879 with receiver type <code>*Point</code>,
2880 to the base type <code>Point</code>.
2881 </p>
2882
2883 <p>
2884 If the receiver base type is a <a href="#Type_declarations">parameterized type</a>, the
2885 receiver specification must declare corresponding type parameters for the method
2886 to use. This makes the receiver type parameters available to the method.
2887 </p>
2888
2889 <p>
2890 Syntactically, this type parameter declaration looks like an
2891 <a href="#Instantiations">instantiation</a> of the receiver base type, except that
2892 the type arguments are the type parameters being declared, one for each type parameter
2893 of the receiver base type.
2894 The type parameter names do not need to match their corresponding parameter names in the
2895 receiver base type definition, and all non-blank parameter names must be unique in the
2896 receiver parameter section and the method signature.
2897 The receiver type parameter constraints are implied by the receiver base type definition:
2898 corresponding type parameters have corresponding constraints.
2899 </p>
2900
2901 <pre>
2902 type Pair[A, B any] struct {
2903         a A
2904         b B
2905 }
2906
2907 func (p Pair[A, B]) Swap() Pair[B, A]  { return Pair[B, A]{p.b, p.a} }
2908 func (p Pair[First, _]) First() First  { return p.a }
2909 </pre>
2910
2911 <h2 id="Expressions">Expressions</h2>
2912
2913 <p>
2914 An expression specifies the computation of a value by applying
2915 operators and functions to operands.
2916 </p>
2917
2918 <h3 id="Operands">Operands</h3>
2919
2920 <p>
2921 Operands denote the elementary values in an expression. An operand may be a
2922 literal, a (possibly <a href="#Qualified_identifiers">qualified</a>)
2923 non-<a href="#Blank_identifier">blank</a> identifier denoting a
2924 <a href="#Constant_declarations">constant</a>,
2925 <a href="#Variable_declarations">variable</a>, or
2926 <a href="#Function_declarations">function</a>,
2927 or a parenthesized expression.
2928 </p>
2929
2930 <p>
2931 An operand name denoting a <a href="#Function_declarations">type-parameterized function</a>
2932 may be followed by a list of <a href="#Type_arguments">type arguments</a>; the
2933 resulting operand is an <a href="#Instantiations">instantiated</a> function.
2934 </p>
2935
2936 <p>
2937 The <a href="#Blank_identifier">blank identifier</a> may appear as an
2938 operand only on the left-hand side of an <a href="#Assignments">assignment</a>.
2939 </p>
2940
2941 <pre class="ebnf">
2942 Operand     = Literal | OperandName [ TypeArgs ] | "(" Expression ")" .
2943 Literal     = BasicLit | CompositeLit | FunctionLit .
2944 BasicLit    = int_lit | float_lit | imaginary_lit | rune_lit | string_lit .
2945 OperandName = identifier | QualifiedIdent .
2946 </pre>
2947
2948 <h3 id="Qualified_identifiers">Qualified identifiers</h3>
2949
2950 <p>
2951 A <i>qualified identifier</i> is an identifier qualified with a package name prefix.
2952 Both the package name and the identifier must not be
2953 <a href="#Blank_identifier">blank</a>.
2954 </p>
2955
2956 <pre class="ebnf">
2957 QualifiedIdent = PackageName "." identifier .
2958 </pre>
2959
2960 <p>
2961 A qualified identifier accesses an identifier in a different package, which
2962 must be <a href="#Import_declarations">imported</a>.
2963 The identifier must be <a href="#Exported_identifiers">exported</a> and
2964 declared in the <a href="#Blocks">package block</a> of that package.
2965 </p>
2966
2967 <pre>
2968 math.Sin        // denotes the Sin function in package math
2969 </pre>
2970
2971 <h3 id="Composite_literals">Composite literals</h3>
2972
2973 <p>
2974 Composite literals construct values for structs, arrays, slices, and maps
2975 and create a new value each time they are evaluated.
2976 They consist of the type of the literal followed by a brace-bound list of elements.
2977 Each element may optionally be preceded by a corresponding key.
2978 </p>
2979
2980 <pre class="ebnf">
2981 CompositeLit  = LiteralType LiteralValue .
2982 LiteralType   = StructType | ArrayType | "[" "..." "]" ElementType |
2983                 SliceType | MapType | TypeName .
2984 LiteralValue  = "{" [ ElementList [ "," ] ] "}" .
2985 ElementList   = KeyedElement { "," KeyedElement } .
2986 KeyedElement  = [ Key ":" ] Element .
2987 Key           = FieldName | Expression | LiteralValue .
2988 FieldName     = identifier .
2989 Element       = Expression | LiteralValue .
2990 </pre>
2991
2992 <p>
2993 The LiteralType's underlying type must be a struct, array, slice, or map type
2994 (the grammar enforces this constraint except when the type is given
2995 as a TypeName).
2996 The types of the elements and keys must be <a href="#Assignability">assignable</a>
2997 to the respective field, element, and key types of the literal type;
2998 there is no additional conversion.
2999 The key is interpreted as a field name for struct literals,
3000 an index for array and slice literals, and a key for map literals.
3001 For map literals, all elements must have a key. It is an error
3002 to specify multiple elements with the same field name or
3003 constant key value. For non-constant map keys, see the section on
3004 <a href="#Order_of_evaluation">evaluation order</a>.
3005 </p>
3006
3007 <p>
3008 For struct literals the following rules apply:
3009 </p>
3010 <ul>
3011         <li>A key must be a field name declared in the struct type.
3012         </li>
3013         <li>An element list that does not contain any keys must
3014             list an element for each struct field in the
3015             order in which the fields are declared.
3016         </li>
3017         <li>If any element has a key, every element must have a key.
3018         </li>
3019         <li>An element list that contains keys does not need to
3020             have an element for each struct field. Omitted fields
3021             get the zero value for that field.
3022         </li>
3023         <li>A literal may omit the element list; such a literal evaluates
3024             to the zero value for its type.
3025         </li>
3026         <li>It is an error to specify an element for a non-exported
3027             field of a struct belonging to a different package.
3028         </li>
3029 </ul>
3030
3031 <p>
3032 Given the declarations
3033 </p>
3034 <pre>
3035 type Point3D struct { x, y, z float64 }
3036 type Line struct { p, q Point3D }
3037 </pre>
3038
3039 <p>
3040 one may write
3041 </p>
3042
3043 <pre>
3044 origin := Point3D{}                            // zero value for Point3D
3045 line := Line{origin, Point3D{y: -4, z: 12.3}}  // zero value for line.q.x
3046 </pre>
3047
3048 <p>
3049 For array and slice literals the following rules apply:
3050 </p>
3051 <ul>
3052         <li>Each element has an associated integer index marking
3053             its position in the array.
3054         </li>
3055         <li>An element with a key uses the key as its index. The
3056             key must be a non-negative constant
3057             <a href="#Representability">representable</a> by
3058             a value of type <code>int</code>; and if it is typed
3059             it must be of integer type.
3060         </li>
3061         <li>An element without a key uses the previous element's index plus one.
3062             If the first element has no key, its index is zero.
3063         </li>
3064 </ul>
3065
3066 <p>
3067 <a href="#Address_operators">Taking the address</a> of a composite literal
3068 generates a pointer to a unique <a href="#Variables">variable</a> initialized
3069 with the literal's value.
3070 </p>
3071
3072 <pre>
3073 var pointer *Point3D = &amp;Point3D{y: 1000}
3074 </pre>
3075
3076 <p>
3077 Note that the <a href="#The_zero_value">zero value</a> for a slice or map
3078 type is not the same as an initialized but empty value of the same type.
3079 Consequently, taking the address of an empty slice or map composite literal
3080 does not have the same effect as allocating a new slice or map value with
3081 <a href="#Allocation">new</a>.
3082 </p>
3083
3084 <pre>
3085 p1 := &amp;[]int{}    // p1 points to an initialized, empty slice with value []int{} and length 0
3086 p2 := new([]int)  // p2 points to an uninitialized slice with value nil and length 0
3087 </pre>
3088
3089 <p>
3090 The length of an array literal is the length specified in the literal type.
3091 If fewer elements than the length are provided in the literal, the missing
3092 elements are set to the zero value for the array element type.
3093 It is an error to provide elements with index values outside the index range
3094 of the array. The notation <code>...</code> specifies an array length equal
3095 to the maximum element index plus one.
3096 </p>
3097
3098 <pre>
3099 buffer := [10]string{}             // len(buffer) == 10
3100 intSet := [6]int{1, 2, 3, 5}       // len(intSet) == 6
3101 days := [...]string{"Sat", "Sun"}  // len(days) == 2
3102 </pre>
3103
3104 <p>
3105 A slice literal describes the entire underlying array literal.
3106 Thus the length and capacity of a slice literal are the maximum
3107 element index plus one. A slice literal has the form
3108 </p>
3109
3110 <pre>
3111 []T{x1, x2, … xn}
3112 </pre>
3113
3114 <p>
3115 and is shorthand for a slice operation applied to an array:
3116 </p>
3117
3118 <pre>
3119 tmp := [n]T{x1, x2, … xn}
3120 tmp[0 : n]
3121 </pre>
3122
3123 <p>
3124 Within a composite literal of array, slice, or map type <code>T</code>,
3125 elements or map keys that are themselves composite literals may elide the respective
3126 literal type if it is identical to the element or key type of <code>T</code>.
3127 Similarly, elements or keys that are addresses of composite literals may elide
3128 the <code>&amp;T</code> when the element or key type is <code>*T</code>.
3129 </p>
3130
3131 <pre>
3132 [...]Point{{1.5, -3.5}, {0, 0}}     // same as [...]Point{Point{1.5, -3.5}, Point{0, 0}}
3133 [][]int{{1, 2, 3}, {4, 5}}          // same as [][]int{[]int{1, 2, 3}, []int{4, 5}}
3134 [][]Point{{{0, 1}, {1, 2}}}         // same as [][]Point{[]Point{Point{0, 1}, Point{1, 2}}}
3135 map[string]Point{"orig": {0, 0}}    // same as map[string]Point{"orig": Point{0, 0}}
3136 map[Point]string{{0, 0}: "orig"}    // same as map[Point]string{Point{0, 0}: "orig"}
3137
3138 type PPoint *Point
3139 [2]*Point{{1.5, -3.5}, {}}          // same as [2]*Point{&amp;Point{1.5, -3.5}, &amp;Point{}}
3140 [2]PPoint{{1.5, -3.5}, {}}          // same as [2]PPoint{PPoint(&amp;Point{1.5, -3.5}), PPoint(&amp;Point{})}
3141 </pre>
3142
3143 <p>
3144 A parsing ambiguity arises when a composite literal using the
3145 TypeName form of the LiteralType appears as an operand between the
3146 <a href="#Keywords">keyword</a> and the opening brace of the block
3147 of an "if", "for", or "switch" statement, and the composite literal
3148 is not enclosed in parentheses, square brackets, or curly braces.
3149 In this rare case, the opening brace of the literal is erroneously parsed
3150 as the one introducing the block of statements. To resolve the ambiguity,
3151 the composite literal must appear within parentheses.
3152 </p>
3153
3154 <pre>
3155 if x == (T{a,b,c}[i]) { … }
3156 if (x == T{a,b,c}[i]) { … }
3157 </pre>
3158
3159 <p>
3160 Examples of valid array, slice, and map literals:
3161 </p>
3162
3163 <pre>
3164 // list of prime numbers
3165 primes := []int{2, 3, 5, 7, 9, 2147483647}
3166
3167 // vowels[ch] is true if ch is a vowel
3168 vowels := [128]bool{'a': true, 'e': true, 'i': true, 'o': true, 'u': true, 'y': true}
3169
3170 // the array [10]float32{-1, 0, 0, 0, -0.1, -0.1, 0, 0, 0, -1}
3171 filter := [10]float32{-1, 4: -0.1, -0.1, 9: -1}
3172
3173 // frequencies in Hz for equal-tempered scale (A4 = 440Hz)
3174 noteFrequency := map[string]float32{
3175         "C0": 16.35, "D0": 18.35, "E0": 20.60, "F0": 21.83,
3176         "G0": 24.50, "A0": 27.50, "B0": 30.87,
3177 }
3178 </pre>
3179
3180
3181 <h3 id="Function_literals">Function literals</h3>
3182
3183 <p>
3184 A function literal represents an anonymous <a href="#Function_declarations">function</a>.
3185 Function literals cannot declare type parameters.
3186 </p>
3187
3188 <pre class="ebnf">
3189 FunctionLit = "func" Signature FunctionBody .
3190 </pre>
3191
3192 <pre>
3193 func(a, b int, z float64) bool { return a*b &lt; int(z) }
3194 </pre>
3195
3196 <p>
3197 A function literal can be assigned to a variable or invoked directly.
3198 </p>
3199
3200 <pre>
3201 f := func(x, y int) int { return x + y }
3202 func(ch chan int) { ch &lt;- ACK }(replyChan)
3203 </pre>
3204
3205 <p>
3206 Function literals are <i>closures</i>: they may refer to variables
3207 defined in a surrounding function. Those variables are then shared between
3208 the surrounding function and the function literal, and they survive as long
3209 as they are accessible.
3210 </p>
3211
3212
3213 <h3 id="Primary_expressions">Primary expressions</h3>
3214
3215 <p>
3216 Primary expressions are the operands for unary and binary expressions.
3217 </p>
3218
3219 <pre class="ebnf">
3220 PrimaryExpr =
3221         Operand |
3222         Conversion |
3223         MethodExpr |
3224         PrimaryExpr Selector |
3225         PrimaryExpr Index |
3226         PrimaryExpr Slice |
3227         PrimaryExpr TypeAssertion |
3228         PrimaryExpr Arguments .
3229
3230 Selector       = "." identifier .
3231 Index          = "[" Expression "]" .
3232 Slice          = "[" [ Expression ] ":" [ Expression ] "]" |
3233                  "[" [ Expression ] ":" Expression ":" Expression "]" .
3234 TypeAssertion  = "." "(" Type ")" .
3235 Arguments      = "(" [ ( ExpressionList | Type [ "," ExpressionList ] ) [ "..." ] [ "," ] ] ")" .
3236 </pre>
3237
3238
3239 <pre>
3240 x
3241 2
3242 (s + ".txt")
3243 f(3.1415, true)
3244 Point{1, 2}
3245 m["foo"]
3246 s[i : j + 1]
3247 obj.color
3248 f.p[i].x()
3249 </pre>
3250
3251
3252 <h3 id="Selectors">Selectors</h3>
3253
3254 <p>
3255 For a <a href="#Primary_expressions">primary expression</a> <code>x</code>
3256 that is not a <a href="#Package_clause">package name</a>, the
3257 <i>selector expression</i>
3258 </p>
3259
3260 <pre>
3261 x.f
3262 </pre>
3263
3264 <p>
3265 denotes the field or method <code>f</code> of the value <code>x</code>
3266 (or sometimes <code>*x</code>; see below).
3267 The identifier <code>f</code> is called the (field or method) <i>selector</i>;
3268 it must not be the <a href="#Blank_identifier">blank identifier</a>.
3269 The type of the selector expression is the type of <code>f</code>.
3270 If <code>x</code> is a package name, see the section on
3271 <a href="#Qualified_identifiers">qualified identifiers</a>.
3272 </p>
3273
3274 <p>
3275 A selector <code>f</code> may denote a field or method <code>f</code> of
3276 a type <code>T</code>, or it may refer
3277 to a field or method <code>f</code> of a nested
3278 <a href="#Struct_types">embedded field</a> of <code>T</code>.
3279 The number of embedded fields traversed
3280 to reach <code>f</code> is called its <i>depth</i> in <code>T</code>.
3281 The depth of a field or method <code>f</code>
3282 declared in <code>T</code> is zero.
3283 The depth of a field or method <code>f</code> declared in
3284 an embedded field <code>A</code> in <code>T</code> is the
3285 depth of <code>f</code> in <code>A</code> plus one.
3286 </p>
3287
3288 <p>
3289 The following rules apply to selectors:
3290 </p>
3291
3292 <ol>
3293 <li>
3294 For a value <code>x</code> of type <code>T</code> or <code>*T</code>
3295 where <code>T</code> is not a pointer or interface type,
3296 <code>x.f</code> denotes the field or method at the shallowest depth
3297 in <code>T</code> where there
3298 is such an <code>f</code>.
3299 If there is not exactly <a href="#Uniqueness_of_identifiers">one <code>f</code></a>
3300 with shallowest depth, the selector expression is illegal.
3301 </li>
3302
3303 <li>
3304 For a value <code>x</code> of type <code>I</code> where <code>I</code>
3305 is an interface type, <code>x.f</code> denotes the actual method with name
3306 <code>f</code> of the dynamic value of <code>x</code>.
3307 If there is no method with name <code>f</code> in the
3308 <a href="#Method_sets">method set</a> of <code>I</code>, the selector
3309 expression is illegal.
3310 </li>
3311
3312 <li>
3313 As an exception, if the type of <code>x</code> is a <a href="#Type_definitions">defined</a>
3314 pointer type and <code>(*x).f</code> is a valid selector expression denoting a field
3315 (but not a method), <code>x.f</code> is shorthand for <code>(*x).f</code>.
3316 </li>
3317
3318 <li>
3319 In all other cases, <code>x.f</code> is illegal.
3320 </li>
3321
3322 <li>
3323 If <code>x</code> is of pointer type and has the value
3324 <code>nil</code> and <code>x.f</code> denotes a struct field,
3325 assigning to or evaluating <code>x.f</code>
3326 causes a <a href="#Run_time_panics">run-time panic</a>.
3327 </li>
3328
3329 <li>
3330 If <code>x</code> is of interface type and has the value
3331 <code>nil</code>, <a href="#Calls">calling</a> or
3332 <a href="#Method_values">evaluating</a> the method <code>x.f</code>
3333 causes a <a href="#Run_time_panics">run-time panic</a>.
3334 </li>
3335 </ol>
3336
3337 <p>
3338 For example, given the declarations:
3339 </p>
3340
3341 <pre>
3342 type T0 struct {
3343         x int
3344 }
3345
3346 func (*T0) M0()
3347
3348 type T1 struct {
3349         y int
3350 }
3351
3352 func (T1) M1()
3353
3354 type T2 struct {
3355         z int
3356         T1
3357         *T0
3358 }
3359
3360 func (*T2) M2()
3361
3362 type Q *T2
3363
3364 var t T2     // with t.T0 != nil
3365 var p *T2    // with p != nil and (*p).T0 != nil
3366 var q Q = p
3367 </pre>
3368
3369 <p>
3370 one may write:
3371 </p>
3372
3373 <pre>
3374 t.z          // t.z
3375 t.y          // t.T1.y
3376 t.x          // (*t.T0).x
3377
3378 p.z          // (*p).z
3379 p.y          // (*p).T1.y
3380 p.x          // (*(*p).T0).x
3381
3382 q.x          // (*(*q).T0).x        (*q).x is a valid field selector
3383
3384 p.M0()       // ((*p).T0).M0()      M0 expects *T0 receiver
3385 p.M1()       // ((*p).T1).M1()      M1 expects T1 receiver
3386 p.M2()       // p.M2()              M2 expects *T2 receiver
3387 t.M2()       // (&amp;t).M2()           M2 expects *T2 receiver, see section on Calls
3388 </pre>
3389
3390 <p>
3391 but the following is invalid:
3392 </p>
3393
3394 <pre>
3395 q.M0()       // (*q).M0 is valid but not a field selector
3396 </pre>
3397
3398
3399 <h3 id="Method_expressions">Method expressions</h3>
3400
3401 <p>
3402 If <code>M</code> is in the <a href="#Method_sets">method set</a> of type <code>T</code>,
3403 <code>T.M</code> is a function that is callable as a regular function
3404 with the same arguments as <code>M</code> prefixed by an additional
3405 argument that is the receiver of the method.
3406 </p>
3407
3408 <pre class="ebnf">
3409 MethodExpr    = ReceiverType "." MethodName .
3410 ReceiverType  = Type .
3411 </pre>
3412
3413 <p>
3414 Consider a struct type <code>T</code> with two methods,
3415 <code>Mv</code>, whose receiver is of type <code>T</code>, and
3416 <code>Mp</code>, whose receiver is of type <code>*T</code>.
3417 </p>
3418
3419 <pre>
3420 type T struct {
3421         a int
3422 }
3423 func (tv  T) Mv(a int) int         { return 0 }  // value receiver
3424 func (tp *T) Mp(f float32) float32 { return 1 }  // pointer receiver
3425
3426 var t T
3427 </pre>
3428
3429 <p>
3430 The expression
3431 </p>
3432
3433 <pre>
3434 T.Mv
3435 </pre>
3436
3437 <p>
3438 yields a function equivalent to <code>Mv</code> but
3439 with an explicit receiver as its first argument; it has signature
3440 </p>
3441
3442 <pre>
3443 func(tv T, a int) int
3444 </pre>
3445
3446 <p>
3447 That function may be called normally with an explicit receiver, so
3448 these five invocations are equivalent:
3449 </p>
3450
3451 <pre>
3452 t.Mv(7)
3453 T.Mv(t, 7)
3454 (T).Mv(t, 7)
3455 f1 := T.Mv; f1(t, 7)
3456 f2 := (T).Mv; f2(t, 7)
3457 </pre>
3458
3459 <p>
3460 Similarly, the expression
3461 </p>
3462
3463 <pre>
3464 (*T).Mp
3465 </pre>
3466
3467 <p>
3468 yields a function value representing <code>Mp</code> with signature
3469 </p>
3470
3471 <pre>
3472 func(tp *T, f float32) float32
3473 </pre>
3474
3475 <p>
3476 For a method with a value receiver, one can derive a function
3477 with an explicit pointer receiver, so
3478 </p>
3479
3480 <pre>
3481 (*T).Mv
3482 </pre>
3483
3484 <p>
3485 yields a function value representing <code>Mv</code> with signature
3486 </p>
3487
3488 <pre>
3489 func(tv *T, a int) int
3490 </pre>
3491
3492 <p>
3493 Such a function indirects through the receiver to create a value
3494 to pass as the receiver to the underlying method;
3495 the method does not overwrite the value whose address is passed in
3496 the function call.
3497 </p>
3498
3499 <p>
3500 The final case, a value-receiver function for a pointer-receiver method,
3501 is illegal because pointer-receiver methods are not in the method set
3502 of the value type.
3503 </p>
3504
3505 <p>
3506 Function values derived from methods are called with function call syntax;
3507 the receiver is provided as the first argument to the call.
3508 That is, given <code>f := T.Mv</code>, <code>f</code> is invoked
3509 as <code>f(t, 7)</code> not <code>t.f(7)</code>.
3510 To construct a function that binds the receiver, use a
3511 <a href="#Function_literals">function literal</a> or
3512 <a href="#Method_values">method value</a>.
3513 </p>
3514
3515 <p>
3516 It is legal to derive a function value from a method of an interface type.
3517 The resulting function takes an explicit receiver of that interface type.
3518 </p>
3519
3520 <h3 id="Method_values">Method values</h3>
3521
3522 <p>
3523 If the expression <code>x</code> has static type <code>T</code> and
3524 <code>M</code> is in the <a href="#Method_sets">method set</a> of type <code>T</code>,
3525 <code>x.M</code> is called a <i>method value</i>.
3526 The method value <code>x.M</code> is a function value that is callable
3527 with the same arguments as a method call of <code>x.M</code>.
3528 The expression <code>x</code> is evaluated and saved during the evaluation of the
3529 method value; the saved copy is then used as the receiver in any calls,
3530 which may be executed later.
3531 </p>
3532
3533 <pre>
3534 type S struct { *T }
3535 type T int
3536 func (t T) M() { print(t) }
3537
3538 t := new(T)
3539 s := S{T: t}
3540 f := t.M                    // receiver *t is evaluated and stored in f
3541 g := s.M                    // receiver *(s.T) is evaluated and stored in g
3542 *t = 42                     // does not affect stored receivers in f and g
3543 </pre>
3544
3545 <p>
3546 The type <code>T</code> may be an interface or non-interface type.
3547 </p>
3548
3549 <p>
3550 As in the discussion of <a href="#Method_expressions">method expressions</a> above,
3551 consider a struct type <code>T</code> with two methods,
3552 <code>Mv</code>, whose receiver is of type <code>T</code>, and
3553 <code>Mp</code>, whose receiver is of type <code>*T</code>.
3554 </p>
3555
3556 <pre>
3557 type T struct {
3558         a int
3559 }
3560 func (tv  T) Mv(a int) int         { return 0 }  // value receiver
3561 func (tp *T) Mp(f float32) float32 { return 1 }  // pointer receiver
3562
3563 var t T
3564 var pt *T
3565 func makeT() T
3566 </pre>
3567
3568 <p>
3569 The expression
3570 </p>
3571
3572 <pre>
3573 t.Mv
3574 </pre>
3575
3576 <p>
3577 yields a function value of type
3578 </p>
3579
3580 <pre>
3581 func(int) int
3582 </pre>
3583
3584 <p>
3585 These two invocations are equivalent:
3586 </p>
3587
3588 <pre>
3589 t.Mv(7)
3590 f := t.Mv; f(7)
3591 </pre>
3592
3593 <p>
3594 Similarly, the expression
3595 </p>
3596
3597 <pre>
3598 pt.Mp
3599 </pre>
3600
3601 <p>
3602 yields a function value of type
3603 </p>
3604
3605 <pre>
3606 func(float32) float32
3607 </pre>
3608
3609 <p>
3610 As with <a href="#Selectors">selectors</a>, a reference to a non-interface method with a value receiver
3611 using a pointer will automatically dereference that pointer: <code>pt.Mv</code> is equivalent to <code>(*pt).Mv</code>.
3612 </p>
3613
3614 <p>
3615 As with <a href="#Calls">method calls</a>, a reference to a non-interface method with a pointer receiver
3616 using an addressable value will automatically take the address of that value: <code>t.Mp</code> is equivalent to <code>(&amp;t).Mp</code>.
3617 </p>
3618
3619 <pre>
3620 f := t.Mv; f(7)   // like t.Mv(7)
3621 f := pt.Mp; f(7)  // like pt.Mp(7)
3622 f := pt.Mv; f(7)  // like (*pt).Mv(7)
3623 f := t.Mp; f(7)   // like (&amp;t).Mp(7)
3624 f := makeT().Mp   // invalid: result of makeT() is not addressable
3625 </pre>
3626
3627 <p>
3628 Although the examples above use non-interface types, it is also legal to create a method value
3629 from a value of interface type.
3630 </p>
3631
3632 <pre>
3633 var i interface { M(int) } = myVal
3634 f := i.M; f(7)  // like i.M(7)
3635 </pre>
3636
3637
3638 <h3 id="Index_expressions">Index expressions</h3>
3639
3640 <p>
3641 A primary expression of the form
3642 </p>
3643
3644 <pre>
3645 a[x]
3646 </pre>
3647
3648 <p>
3649 denotes the element of the array, pointer to array, slice, string or map <code>a</code> indexed by <code>x</code>.
3650 The value <code>x</code> is called the <i>index</i> or <i>map key</i>, respectively.
3651 The following rules apply:
3652 </p>
3653
3654 <p>
3655 If <code>a</code> is not a map:
3656 </p>
3657 <ul>
3658         <li>the index <code>x</code> must be of integer type or an untyped constant</li>
3659         <li>a constant index must be non-negative and
3660             <a href="#Representability">representable</a> by a value of type <code>int</code></li>
3661         <li>a constant index that is untyped is given type <code>int</code></li>
3662         <li>the index <code>x</code> is <i>in range</i> if <code>0 &lt;= x &lt; len(a)</code>,
3663             otherwise it is <i>out of range</i></li>
3664 </ul>
3665
3666 <p>
3667 For <code>a</code> of <a href="#Array_types">array type</a> <code>A</code>:
3668 </p>
3669 <ul>
3670         <li>a <a href="#Constants">constant</a> index must be in range</li>
3671         <li>if <code>x</code> is out of range at run time,
3672             a <a href="#Run_time_panics">run-time panic</a> occurs</li>
3673         <li><code>a[x]</code> is the array element at index <code>x</code> and the type of
3674             <code>a[x]</code> is the element type of <code>A</code></li>
3675 </ul>
3676
3677 <p>
3678 For <code>a</code> of <a href="#Pointer_types">pointer</a> to array type:
3679 </p>
3680 <ul>
3681         <li><code>a[x]</code> is shorthand for <code>(*a)[x]</code></li>
3682 </ul>
3683
3684 <p>
3685 For <code>a</code> of <a href="#Slice_types">slice type</a> <code>S</code>:
3686 </p>
3687 <ul>
3688         <li>if <code>x</code> is out of range at run time,
3689             a <a href="#Run_time_panics">run-time panic</a> occurs</li>
3690         <li><code>a[x]</code> is the slice element at index <code>x</code> and the type of
3691             <code>a[x]</code> is the element type of <code>S</code></li>
3692 </ul>
3693
3694 <p>
3695 For <code>a</code> of <a href="#String_types">string type</a>:
3696 </p>
3697 <ul>
3698         <li>a <a href="#Constants">constant</a> index must be in range
3699             if the string <code>a</code> is also constant</li>
3700         <li>if <code>x</code> is out of range at run time,
3701             a <a href="#Run_time_panics">run-time panic</a> occurs</li>
3702         <li><code>a[x]</code> is the non-constant byte value at index <code>x</code> and the type of
3703             <code>a[x]</code> is <code>byte</code></li>
3704         <li><code>a[x]</code> may not be assigned to</li>
3705 </ul>
3706
3707 <p>
3708 For <code>a</code> of <a href="#Map_types">map type</a> <code>M</code>:
3709 </p>
3710 <ul>
3711         <li><code>x</code>'s type must be
3712             <a href="#Assignability">assignable</a>
3713             to the key type of <code>M</code></li>
3714         <li>if the map contains an entry with key <code>x</code>,
3715             <code>a[x]</code> is the map element with key <code>x</code>
3716             and the type of <code>a[x]</code> is the element type of <code>M</code></li>
3717         <li>if the map is <code>nil</code> or does not contain such an entry,
3718             <code>a[x]</code> is the <a href="#The_zero_value">zero value</a>
3719             for the element type of <code>M</code></li>
3720 </ul>
3721
3722 <p>
3723 For <code>a</code> of <a href="#Type_parameters">type parameter type</a> <code>P</code>:
3724 </p>
3725 <ul>
3726         <li><code>P</code> must have <a href="#Structure_of_interfaces">specific types</a>.</li>
3727         <li>The index expression <code>a[x]</code> must be valid for values
3728             of all specific types of <code>P</code>.</li>
3729         <li>The element types of all specific types of <code>P</code> must be identical.
3730             In this context, the element type of a string type is <code>byte</code>.</li>
3731         <li>If there is a map type among the specific types of <code>P</code>,
3732             all specific types must be map types, and the respective key types
3733             must be all identical.</li>
3734         <li><code>a[x]</code> is the array, slice, or string element at index <code>x</code>,
3735             or the map element with key <code>x</code> of the type argument
3736             that <code>P</code> is instantiated with, and the type of <code>a[x]</code> is
3737             the type of the (identical) element types.</li>
3738         <li><code>a[x]</code> may not be assigned to if the specific types of <code>P</code>
3739             include string types.
3740 </ul>
3741
3742 <p>
3743 Otherwise <code>a[x]</code> is illegal.
3744 </p>
3745
3746 <p>
3747 An index expression on a map <code>a</code> of type <code>map[K]V</code>
3748 used in an <a href="#Assignments">assignment</a> or initialization of the special form
3749 </p>
3750
3751 <pre>
3752 v, ok = a[x]
3753 v, ok := a[x]
3754 var v, ok = a[x]
3755 </pre>
3756
3757 <p>
3758 yields an additional untyped boolean value. The value of <code>ok</code> is
3759 <code>true</code> if the key <code>x</code> is present in the map, and
3760 <code>false</code> otherwise.
3761 </p>
3762
3763 <p>
3764 Assigning to an element of a <code>nil</code> map causes a
3765 <a href="#Run_time_panics">run-time panic</a>.
3766 </p>
3767
3768
3769 <h3 id="Slice_expressions">Slice expressions</h3>
3770
3771 <p>
3772 Slice expressions construct a substring or slice from a string, array, pointer
3773 to array, or slice. There are two variants: a simple form that specifies a low
3774 and high bound, and a full form that also specifies a bound on the capacity.
3775 </p>
3776
3777 <h4>Simple slice expressions</h4>
3778
3779 <p>
3780 For a string, array, pointer to array, or slice <code>a</code>, the primary expression
3781 </p>
3782
3783 <pre>
3784 a[low : high]
3785 </pre>
3786
3787 <p>
3788 constructs a substring or slice. The <i>indices</i> <code>low</code> and
3789 <code>high</code> select which elements of operand <code>a</code> appear
3790 in the result. The result has indices starting at 0 and length equal to
3791 <code>high</code>&nbsp;-&nbsp;<code>low</code>.
3792 After slicing the array <code>a</code>
3793 </p>
3794
3795 <pre>
3796 a := [5]int{1, 2, 3, 4, 5}
3797 s := a[1:4]
3798 </pre>
3799
3800 <p>
3801 the slice <code>s</code> has type <code>[]int</code>, length 3, capacity 4, and elements
3802 </p>
3803
3804 <pre>
3805 s[0] == 2
3806 s[1] == 3
3807 s[2] == 4
3808 </pre>
3809
3810 <p>
3811 For convenience, any of the indices may be omitted. A missing <code>low</code>
3812 index defaults to zero; a missing <code>high</code> index defaults to the length of the
3813 sliced operand:
3814 </p>
3815
3816 <pre>
3817 a[2:]  // same as a[2 : len(a)]
3818 a[:3]  // same as a[0 : 3]
3819 a[:]   // same as a[0 : len(a)]
3820 </pre>
3821
3822 <p>
3823 If <code>a</code> is a pointer to an array, <code>a[low : high]</code> is shorthand for
3824 <code>(*a)[low : high]</code>.
3825 </p>
3826
3827 <p>
3828 For arrays or strings, the indices are <i>in range</i> if
3829 <code>0</code> &lt;= <code>low</code> &lt;= <code>high</code> &lt;= <code>len(a)</code>,
3830 otherwise they are <i>out of range</i>.
3831 For slices, the upper index bound is the slice capacity <code>cap(a)</code> rather than the length.
3832 A <a href="#Constants">constant</a> index must be non-negative and
3833 <a href="#Representability">representable</a> by a value of type
3834 <code>int</code>; for arrays or constant strings, constant indices must also be in range.
3835 If both indices are constant, they must satisfy <code>low &lt;= high</code>.
3836 If the indices are out of range at run time, a <a href="#Run_time_panics">run-time panic</a> occurs.
3837 </p>
3838
3839 <p>
3840 Except for <a href="#Constants">untyped strings</a>, if the sliced operand is a string or slice,
3841 the result of the slice operation is a non-constant value of the same type as the operand.
3842 For untyped string operands the result is a non-constant value of type <code>string</code>.
3843 If the sliced operand is an array, it must be <a href="#Address_operators">addressable</a>
3844 and the result of the slice operation is a slice with the same element type as the array.
3845 </p>
3846
3847 <p>
3848 If the sliced operand of a valid slice expression is a <code>nil</code> slice, the result
3849 is a <code>nil</code> slice. Otherwise, if the result is a slice, it shares its underlying
3850 array with the operand.
3851 </p>
3852
3853 <pre>
3854 var a [10]int
3855 s1 := a[3:7]   // underlying array of s1 is array a; &amp;s1[2] == &amp;a[5]
3856 s2 := s1[1:4]  // underlying array of s2 is underlying array of s1 which is array a; &amp;s2[1] == &amp;a[5]
3857 s2[1] = 42     // s2[1] == s1[2] == a[5] == 42; they all refer to the same underlying array element
3858 </pre>
3859
3860
3861 <h4>Full slice expressions</h4>
3862
3863 <p>
3864 For an array, pointer to array, or slice <code>a</code> (but not a string), the primary expression
3865 </p>
3866
3867 <pre>
3868 a[low : high : max]
3869 </pre>
3870
3871 <p>
3872 constructs a slice of the same type, and with the same length and elements as the simple slice
3873 expression <code>a[low : high]</code>. Additionally, it controls the resulting slice's capacity
3874 by setting it to <code>max - low</code>. Only the first index may be omitted; it defaults to 0.
3875 After slicing the array <code>a</code>
3876 </p>
3877
3878 <pre>
3879 a := [5]int{1, 2, 3, 4, 5}
3880 t := a[1:3:5]
3881 </pre>
3882
3883 <p>
3884 the slice <code>t</code> has type <code>[]int</code>, length 2, capacity 4, and elements
3885 </p>
3886
3887 <pre>
3888 t[0] == 2
3889 t[1] == 3
3890 </pre>
3891
3892 <p>
3893 As for simple slice expressions, if <code>a</code> is a pointer to an array,
3894 <code>a[low : high : max]</code> is shorthand for <code>(*a)[low : high : max]</code>.
3895 If the sliced operand is an array, it must be <a href="#Address_operators">addressable</a>.
3896 </p>
3897
3898 <p>
3899 The indices are <i>in range</i> if <code>0 &lt;= low &lt;= high &lt;= max &lt;= cap(a)</code>,
3900 otherwise they are <i>out of range</i>.
3901 A <a href="#Constants">constant</a> index must be non-negative and
3902 <a href="#Representability">representable</a> by a value of type
3903 <code>int</code>; for arrays, constant indices must also be in range.
3904 If multiple indices are constant, the constants that are present must be in range relative to each
3905 other.
3906 If the indices are out of range at run time, a <a href="#Run_time_panics">run-time panic</a> occurs.
3907 </p>
3908
3909 <h3 id="Type_assertions">Type assertions</h3>
3910
3911 <p>
3912 For an expression <code>x</code> of <a href="#Interface_types">interface type</a>,
3913 but not a <a href="#Type_parameters">type parameter</a>, and a type <code>T</code>,
3914 the primary expression
3915 </p>
3916
3917 <pre>
3918 x.(T)
3919 </pre>
3920
3921 <p>
3922 asserts that <code>x</code> is not <code>nil</code>
3923 and that the value stored in <code>x</code> is of type <code>T</code>.
3924 The notation <code>x.(T)</code> is called a <i>type assertion</i>.
3925 </p>
3926 <p>
3927 More precisely, if <code>T</code> is not an interface type, <code>x.(T)</code> asserts
3928 that the dynamic type of <code>x</code> is <a href="#Type_identity">identical</a>
3929 to the type <code>T</code>.
3930 In this case, <code>T</code> must <a href="#Method_sets">implement</a> the (interface) type of <code>x</code>;
3931 otherwise the type assertion is invalid since it is not possible for <code>x</code>
3932 to store a value of type <code>T</code>.
3933 If <code>T</code> is an interface type, <code>x.(T)</code> asserts that the dynamic type
3934 of <code>x</code> implements the interface <code>T</code>.
3935 </p>
3936 <p>
3937 If the type assertion holds, the value of the expression is the value
3938 stored in <code>x</code> and its type is <code>T</code>. If the type assertion is false,
3939 a <a href="#Run_time_panics">run-time panic</a> occurs.
3940 In other words, even though the dynamic type of <code>x</code>
3941 is known only at run time, the type of <code>x.(T)</code> is
3942 known to be <code>T</code> in a correct program.
3943 </p>
3944
3945 <pre>
3946 var x interface{} = 7          // x has dynamic type int and value 7
3947 i := x.(int)                   // i has type int and value 7
3948
3949 type I interface { m() }
3950
3951 func f(y I) {
3952         s := y.(string)        // illegal: string does not implement I (missing method m)
3953         r := y.(io.Reader)     // r has type io.Reader and the dynamic type of y must implement both I and io.Reader
3954         …
3955 }
3956 </pre>
3957
3958 <p>
3959 A type assertion used in an <a href="#Assignments">assignment</a> or initialization of the special form
3960 </p>
3961
3962 <pre>
3963 v, ok = x.(T)
3964 v, ok := x.(T)
3965 var v, ok = x.(T)
3966 var v, ok interface{} = x.(T) // dynamic types of v and ok are T and bool
3967 </pre>
3968
3969 <p>
3970 yields an additional untyped boolean value. The value of <code>ok</code> is <code>true</code>
3971 if the assertion holds. Otherwise it is <code>false</code> and the value of <code>v</code> is
3972 the <a href="#The_zero_value">zero value</a> for type <code>T</code>.
3973 No <a href="#Run_time_panics">run-time panic</a> occurs in this case.
3974 </p>
3975
3976
3977 <h3 id="Calls">Calls</h3>
3978
3979 <p>
3980 Given an expression <code>f</code> of function type
3981 <code>F</code>,
3982 </p>
3983
3984 <pre>
3985 f(a1, a2, … an)
3986 </pre>
3987
3988 <p>
3989 calls <code>f</code> with arguments <code>a1, a2, … an</code>.
3990 Except for one special case, arguments must be single-valued expressions
3991 <a href="#Assignability">assignable</a> to the parameter types of
3992 <code>F</code> and are evaluated before the function is called.
3993 The type of the expression is the result type
3994 of <code>F</code>.
3995 A method invocation is similar but the method itself
3996 is specified as a selector upon a value of the receiver type for
3997 the method.
3998 </p>
3999
4000 <pre>
4001 math.Atan2(x, y)  // function call
4002 var pt *Point
4003 pt.Scale(3.5)     // method call with receiver pt
4004 </pre>
4005
4006 <p>
4007 If <code>f</code> denotes a parameterized function, it must be
4008 <a href="#Instantiations">instantiated</a> before it can be called
4009 or used as a function value.
4010 </p>
4011
4012 <p>
4013 In a function call, the function value and arguments are evaluated in
4014 <a href="#Order_of_evaluation">the usual order</a>.
4015 After they are evaluated, the parameters of the call are passed by value to the function
4016 and the called function begins execution.
4017 The return parameters of the function are passed by value
4018 back to the caller when the function returns.
4019 </p>
4020
4021 <p>
4022 Calling a <code>nil</code> function value
4023 causes a <a href="#Run_time_panics">run-time panic</a>.
4024 </p>
4025
4026 <p>
4027 As a special case, if the return values of a function or method
4028 <code>g</code> are equal in number and individually
4029 assignable to the parameters of another function or method
4030 <code>f</code>, then the call <code>f(g(<i>parameters_of_g</i>))</code>
4031 will invoke <code>f</code> after binding the return values of
4032 <code>g</code> to the parameters of <code>f</code> in order.  The call
4033 of <code>f</code> must contain no parameters other than the call of <code>g</code>,
4034 and <code>g</code> must have at least one return value.
4035 If <code>f</code> has a final <code>...</code> parameter, it is
4036 assigned the return values of <code>g</code> that remain after
4037 assignment of regular parameters.
4038 </p>
4039
4040 <pre>
4041 func Split(s string, pos int) (string, string) {
4042         return s[0:pos], s[pos:]
4043 }
4044
4045 func Join(s, t string) string {
4046         return s + t
4047 }
4048
4049 if Join(Split(value, len(value)/2)) != value {
4050         log.Panic("test fails")
4051 }
4052 </pre>
4053
4054 <p>
4055 A method call <code>x.m()</code> is valid if the <a href="#Method_sets">method set</a>
4056 of (the type of) <code>x</code> contains <code>m</code> and the
4057 argument list can be assigned to the parameter list of <code>m</code>.
4058 If <code>x</code> is <a href="#Address_operators">addressable</a> and <code>&amp;x</code>'s method
4059 set contains <code>m</code>, <code>x.m()</code> is shorthand
4060 for <code>(&amp;x).m()</code>:
4061 </p>
4062
4063 <pre>
4064 var p Point
4065 p.Scale(3.5)
4066 </pre>
4067
4068 <p>
4069 There is no distinct method type and there are no method literals.
4070 </p>
4071
4072 <h3 id="Passing_arguments_to_..._parameters">Passing arguments to <code>...</code> parameters</h3>
4073
4074 <p>
4075 If <code>f</code> is <a href="#Function_types">variadic</a> with a final
4076 parameter <code>p</code> of type <code>...T</code>, then within <code>f</code>
4077 the type of <code>p</code> is equivalent to type <code>[]T</code>.
4078 If <code>f</code> is invoked with no actual arguments for <code>p</code>,
4079 the value passed to <code>p</code> is <code>nil</code>.
4080 Otherwise, the value passed is a new slice
4081 of type <code>[]T</code> with a new underlying array whose successive elements
4082 are the actual arguments, which all must be <a href="#Assignability">assignable</a>
4083 to <code>T</code>. The length and capacity of the slice is therefore
4084 the number of arguments bound to <code>p</code> and may differ for each
4085 call site.
4086 </p>
4087
4088 <p>
4089 Given the function and calls
4090 </p>
4091 <pre>
4092 func Greeting(prefix string, who ...string)
4093 Greeting("nobody")
4094 Greeting("hello:", "Joe", "Anna", "Eileen")
4095 </pre>
4096
4097 <p>
4098 within <code>Greeting</code>, <code>who</code> will have the value
4099 <code>nil</code> in the first call, and
4100 <code>[]string{"Joe", "Anna", "Eileen"}</code> in the second.
4101 </p>
4102
4103 <p>
4104 If the final argument is assignable to a slice type <code>[]T</code> and
4105 is followed by <code>...</code>, it is passed unchanged as the value
4106 for a <code>...T</code> parameter. In this case no new slice is created.
4107 </p>
4108
4109 <p>
4110 Given the slice <code>s</code> and call
4111 </p>
4112
4113 <pre>
4114 s := []string{"James", "Jasmine"}
4115 Greeting("goodbye:", s...)
4116 </pre>
4117
4118 <p>
4119 within <code>Greeting</code>, <code>who</code> will have the same value as <code>s</code>
4120 with the same underlying array.
4121 </p>
4122
4123 <h3 id="Instantiations">Instantiations</h3>
4124
4125 <p>
4126 A parameterized function or type is <i>instantiated</i> by substituting type arguments
4127 for the type parameters.
4128 Instantiation proceeds in two phases:
4129 </p>
4130
4131 <ol>
4132 <li>
4133 Each type argument is substituted for its corresponding type parameter in the parameterized
4134 declaration.
4135 This substitution happens across the entire function or type declaration,
4136 including the type parameter list itself and any types in that list.
4137 </li>
4138
4139 <li>
4140 After substitution, each type argument must <a href="#Interface_types">implement</a>
4141 the <a href="#Type_parameter_lists">constraint</a> (instantiated, if necessary)
4142 of the corresponding type parameter. Otherwise instantiation fails.
4143 </li>
4144 </ol>
4145
4146 <p>
4147 Instantiating a type results in a new non-parameterized <a href="#Types">named type</a>;
4148 instantiating a function produces a new non-parameterized function.
4149 </p>
4150
4151 <pre>
4152 type parameter list    type arguments    after substitution
4153
4154 [P any]                int               [int any]
4155 [S ~[]E, E any]        []int, int        [[]int ~[]int, int any]
4156 [P io.Writer]          string            [string io.Writer]         // illegal: string doesn't implement io.Writer
4157 </pre>
4158
4159 <p>
4160 Type arguments may be provided explicitly, or they may be partially or completely
4161 <a href="#Type_inference">inferred</a>.
4162 A partially provided type argument list cannot be empty; there must be at least the
4163 first argument.
4164 </p>
4165
4166 <pre>
4167 type T[P1 ~int, P2 ~[]P1] struct{ … }
4168
4169 T[]            // illegal: at least the first type argument must be present, even if it could be inferred
4170 T[int]         // argument for P1 explicitly provided, argument for P2 inferred
4171 T[int, []int]  // both arguments explicitly provided
4172 </pre>
4173
4174 <p>
4175 A partial type argument list specifies a prefix of the full list of type arguments, leaving
4176 the remaining arguments to be inferred. Loosely speaking, type arguments may be omitted from
4177 "right to left".
4178 </p>
4179
4180 <p>
4181 Parameterized types, and parameterized functions that are not <a href="#Calls">called</a>,
4182 require a type argument list for instantiation; if the list is partial, all
4183 remaining type arguments must be inferrable.
4184 Calls to parameterized functions may provide a (possibly partial) type
4185 argument list, or may omit it entirely if the omitted type arguments are
4186 inferrable from the ordinary (non-type) function arguments.
4187 </p>
4188
4189 <pre>
4190 func min[T constraints.Ordered](x, y T) T { … }
4191
4192 f := min                   // illegal: min must be instantiated when used without being called
4193 minInt := min[int]         // minInt has type func(x, y int) int
4194 a := minInt(2, 3)          // a has value 2 of type int
4195 b := min[float64](2.0, 3)  // b has value 2.0 of type float64
4196 c := min(b, -1)            // c has value -1.0 of type float64
4197 </pre>
4198
4199 <h3 id="Operators">Operators</h3>
4200
4201 <p>
4202 Operators combine operands into expressions.
4203 </p>
4204
4205 <pre class="ebnf">
4206 Expression = UnaryExpr | Expression binary_op Expression .
4207 UnaryExpr  = PrimaryExpr | unary_op UnaryExpr .
4208
4209 binary_op  = "||" | "&amp;&amp;" | rel_op | add_op | mul_op .
4210 rel_op     = "==" | "!=" | "&lt;" | "&lt;=" | ">" | ">=" .
4211 add_op     = "+" | "-" | "|" | "^" .
4212 mul_op     = "*" | "/" | "%" | "&lt;&lt;" | "&gt;&gt;" | "&amp;" | "&amp;^" .
4213
4214 unary_op   = "+" | "-" | "!" | "^" | "*" | "&amp;" | "&lt;-" .
4215 </pre>
4216
4217 <p>
4218 Comparisons are discussed <a href="#Comparison_operators">elsewhere</a>.
4219 For other binary operators, the operand types must be <a href="#Type_identity">identical</a>
4220 unless the operation involves shifts or untyped <a href="#Constants">constants</a>.
4221 For operations involving constants only, see the section on
4222 <a href="#Constant_expressions">constant expressions</a>.
4223 </p>
4224
4225 <p>
4226 Except for shift operations, if one operand is an untyped <a href="#Constants">constant</a>
4227 and the other operand is not, the constant is implicitly <a href="#Conversions">converted</a>
4228 to the type of the other operand.
4229 </p>
4230
4231 <p>
4232 The right operand in a shift expression must have integer type
4233 or be an untyped constant <a href="#Representability">representable</a> by a
4234 value of type <code>uint</code>.
4235 If the left operand of a non-constant shift expression is an untyped constant,
4236 it is first implicitly converted to the type it would assume if the shift expression were
4237 replaced by its left operand alone.
4238 </p>
4239
4240 <pre>
4241 var a [1024]byte
4242 var s uint = 33
4243
4244 // The results of the following examples are given for 64-bit ints.
4245 var i = 1&lt;&lt;s                   // 1 has type int
4246 var j int32 = 1&lt;&lt;s             // 1 has type int32; j == 0
4247 var k = uint64(1&lt;&lt;s)           // 1 has type uint64; k == 1&lt;&lt;33
4248 var m int = 1.0&lt;&lt;s             // 1.0 has type int; m == 1&lt;&lt;33
4249 var n = 1.0&lt;&lt;s == j            // 1.0 has type int32; n == true
4250 var o = 1&lt;&lt;s == 2&lt;&lt;s           // 1 and 2 have type int; o == false
4251 var p = 1&lt;&lt;s == 1&lt;&lt;33          // 1 has type int; p == true
4252 var u = 1.0&lt;&lt;s                 // illegal: 1.0 has type float64, cannot shift
4253 var u1 = 1.0&lt;&lt;s != 0           // illegal: 1.0 has type float64, cannot shift
4254 var u2 = 1&lt;&lt;s != 1.0           // illegal: 1 has type float64, cannot shift
4255 var v float32 = 1&lt;&lt;s           // illegal: 1 has type float32, cannot shift
4256 var w int64 = 1.0&lt;&lt;33          // 1.0&lt;&lt;33 is a constant shift expression; w == 1&lt;&lt;33
4257 var x = a[1.0&lt;&lt;s]              // panics: 1.0 has type int, but 1&lt;&lt;33 overflows array bounds
4258 var b = make([]byte, 1.0&lt;&lt;s)   // 1.0 has type int; len(b) == 1&lt;&lt;33
4259
4260 // The results of the following examples are given for 32-bit ints,
4261 // which means the shifts will overflow.
4262 var mm int = 1.0&lt;&lt;s            // 1.0 has type int; mm == 0
4263 var oo = 1&lt;&lt;s == 2&lt;&lt;s          // 1 and 2 have type int; oo == true
4264 var pp = 1&lt;&lt;s == 1&lt;&lt;33         // illegal: 1 has type int, but 1&lt;&lt;33 overflows int
4265 var xx = a[1.0&lt;&lt;s]             // 1.0 has type int; xx == a[0]
4266 var bb = make([]byte, 1.0&lt;&lt;s)  // 1.0 has type int; len(bb) == 0
4267 </pre>
4268
4269 <h4 id="Operator_precedence">Operator precedence</h4>
4270 <p>
4271 Unary operators have the highest precedence.
4272 As the  <code>++</code> and <code>--</code> operators form
4273 statements, not expressions, they fall
4274 outside the operator hierarchy.
4275 As a consequence, statement <code>*p++</code> is the same as <code>(*p)++</code>.
4276 <p>
4277 There are five precedence levels for binary operators.
4278 Multiplication operators bind strongest, followed by addition
4279 operators, comparison operators, <code>&amp;&amp;</code> (logical AND),
4280 and finally <code>||</code> (logical OR):
4281 </p>
4282
4283 <pre class="grammar">
4284 Precedence    Operator
4285     5             *  /  %  &lt;&lt;  &gt;&gt;  &amp;  &amp;^
4286     4             +  -  |  ^
4287     3             ==  !=  &lt;  &lt;=  &gt;  &gt;=
4288     2             &amp;&amp;
4289     1             ||
4290 </pre>
4291
4292 <p>
4293 Binary operators of the same precedence associate from left to right.
4294 For instance, <code>x / y * z</code> is the same as <code>(x / y) * z</code>.
4295 </p>
4296
4297 <pre>
4298 +x
4299 23 + 3*x[i]
4300 x &lt;= f()
4301 ^a &gt;&gt; b
4302 f() || g()
4303 x == y+1 &amp;&amp; &lt;-chanInt &gt; 0
4304 </pre>
4305
4306
4307 <h3 id="Arithmetic_operators">Arithmetic operators</h3>
4308 <p>
4309 Arithmetic operators apply to numeric values and yield a result of the same
4310 type as the first operand. The four standard arithmetic operators (<code>+</code>,
4311 <code>-</code>, <code>*</code>, <code>/</code>) apply to integer,
4312 floating-point, and complex types; <code>+</code> also applies to strings.
4313 The bitwise logical and shift operators apply to integers only.
4314 </p>
4315
4316 <pre class="grammar">
4317 +    sum                    integers, floats, complex values, strings
4318 -    difference             integers, floats, complex values
4319 *    product                integers, floats, complex values
4320 /    quotient               integers, floats, complex values
4321 %    remainder              integers
4322
4323 &amp;    bitwise AND            integers
4324 |    bitwise OR             integers
4325 ^    bitwise XOR            integers
4326 &amp;^   bit clear (AND NOT)    integers
4327
4328 &lt;&lt;   left shift             integer &lt;&lt; integer &gt;= 0
4329 &gt;&gt;   right shift            integer &gt;&gt; integer &gt;= 0
4330 </pre>
4331
4332
4333 <h4 id="Integer_operators">Integer operators</h4>
4334
4335 <p>
4336 For two integer values <code>x</code> and <code>y</code>, the integer quotient
4337 <code>q = x / y</code> and remainder <code>r = x % y</code> satisfy the following
4338 relationships:
4339 </p>
4340
4341 <pre>
4342 x = q*y + r  and  |r| &lt; |y|
4343 </pre>
4344
4345 <p>
4346 with <code>x / y</code> truncated towards zero
4347 (<a href="https://en.wikipedia.org/wiki/Modulo_operation">"truncated division"</a>).
4348 </p>
4349
4350 <pre>
4351  x     y     x / y     x % y
4352  5     3       1         2
4353 -5     3      -1        -2
4354  5    -3      -1         2
4355 -5    -3       1        -2
4356 </pre>
4357
4358 <p>
4359 The one exception to this rule is that if the dividend <code>x</code> is
4360 the most negative value for the int type of <code>x</code>, the quotient
4361 <code>q = x / -1</code> is equal to <code>x</code> (and <code>r = 0</code>)
4362 due to two's-complement <a href="#Integer_overflow">integer overflow</a>:
4363 </p>
4364
4365 <pre>
4366                          x, q
4367 int8                     -128
4368 int16                  -32768
4369 int32             -2147483648
4370 int64    -9223372036854775808
4371 </pre>
4372
4373 <p>
4374 If the divisor is a <a href="#Constants">constant</a>, it must not be zero.
4375 If the divisor is zero at run time, a <a href="#Run_time_panics">run-time panic</a> occurs.
4376 If the dividend is non-negative and the divisor is a constant power of 2,
4377 the division may be replaced by a right shift, and computing the remainder may
4378 be replaced by a bitwise AND operation:
4379 </p>
4380
4381 <pre>
4382  x     x / 4     x % 4     x &gt;&gt; 2     x &amp; 3
4383  11      2         3         2          3
4384 -11     -2        -3        -3          1
4385 </pre>
4386
4387 <p>
4388 The shift operators shift the left operand by the shift count specified by the
4389 right operand, which must be non-negative. If the shift count is negative at run time,
4390 a <a href="#Run_time_panics">run-time panic</a> occurs.
4391 The shift operators implement arithmetic shifts if the left operand is a signed
4392 integer and logical shifts if it is an unsigned integer.
4393 There is no upper limit on the shift count. Shifts behave
4394 as if the left operand is shifted <code>n</code> times by 1 for a shift
4395 count of <code>n</code>.
4396 As a result, <code>x &lt;&lt; 1</code> is the same as <code>x*2</code>
4397 and <code>x &gt;&gt; 1</code> is the same as
4398 <code>x/2</code> but truncated towards negative infinity.
4399 </p>
4400
4401 <p>
4402 For integer operands, the unary operators
4403 <code>+</code>, <code>-</code>, and <code>^</code> are defined as
4404 follows:
4405 </p>
4406
4407 <pre class="grammar">
4408 +x                          is 0 + x
4409 -x    negation              is 0 - x
4410 ^x    bitwise complement    is m ^ x  with m = "all bits set to 1" for unsigned x
4411                                       and  m = -1 for signed x
4412 </pre>
4413
4414
4415 <h4 id="Integer_overflow">Integer overflow</h4>
4416
4417 <p>
4418 For unsigned integer values, the operations <code>+</code>,
4419 <code>-</code>, <code>*</code>, and <code>&lt;&lt;</code> are
4420 computed modulo 2<sup><i>n</i></sup>, where <i>n</i> is the bit width of
4421 the <a href="#Numeric_types">unsigned integer</a>'s type.
4422 Loosely speaking, these unsigned integer operations
4423 discard high bits upon overflow, and programs may rely on "wrap around".
4424 </p>
4425 <p>
4426 For signed integers, the operations <code>+</code>,
4427 <code>-</code>, <code>*</code>, <code>/</code>, and <code>&lt;&lt;</code> may legally
4428 overflow and the resulting value exists and is deterministically defined
4429 by the signed integer representation, the operation, and its operands.
4430 Overflow does not cause a <a href="#Run_time_panics">run-time panic</a>.
4431 A compiler may not optimize code under the assumption that overflow does
4432 not occur. For instance, it may not assume that <code>x &lt; x + 1</code> is always true.
4433 </p>
4434
4435
4436 <h4 id="Floating_point_operators">Floating-point operators</h4>
4437
4438 <p>
4439 For floating-point and complex numbers,
4440 <code>+x</code> is the same as <code>x</code>,
4441 while <code>-x</code> is the negation of <code>x</code>.
4442 The result of a floating-point or complex division by zero is not specified beyond the
4443 IEEE-754 standard; whether a <a href="#Run_time_panics">run-time panic</a>
4444 occurs is implementation-specific.
4445 </p>
4446
4447 <p>
4448 An implementation may combine multiple floating-point operations into a single
4449 fused operation, possibly across statements, and produce a result that differs
4450 from the value obtained by executing and rounding the instructions individually.
4451 An explicit floating-point type <a href="#Conversions">conversion</a> rounds to
4452 the precision of the target type, preventing fusion that would discard that rounding.
4453 </p>
4454
4455 <p>
4456 For instance, some architectures provide a "fused multiply and add" (FMA) instruction
4457 that computes <code>x*y + z</code> without rounding the intermediate result <code>x*y</code>.
4458 These examples show when a Go implementation can use that instruction:
4459 </p>
4460
4461 <pre>
4462 // FMA allowed for computing r, because x*y is not explicitly rounded:
4463 r  = x*y + z
4464 r  = z;   r += x*y
4465 t  = x*y; r = t + z
4466 *p = x*y; r = *p + z
4467 r  = x*y + float64(z)
4468
4469 // FMA disallowed for computing r, because it would omit rounding of x*y:
4470 r  = float64(x*y) + z
4471 r  = z; r += float64(x*y)
4472 t  = float64(x*y); r = t + z
4473 </pre>
4474
4475 <h4 id="String_concatenation">String concatenation</h4>
4476
4477 <p>
4478 Strings can be concatenated using the <code>+</code> operator
4479 or the <code>+=</code> assignment operator:
4480 </p>
4481
4482 <pre>
4483 s := "hi" + string(c)
4484 s += " and good bye"
4485 </pre>
4486
4487 <p>
4488 String addition creates a new string by concatenating the operands.
4489 </p>
4490
4491
4492 <h3 id="Comparison_operators">Comparison operators</h3>
4493
4494 <p>
4495 Comparison operators compare two operands and yield an untyped boolean value.
4496 </p>
4497
4498 <pre class="grammar">
4499 ==    equal
4500 !=    not equal
4501 &lt;     less
4502 &lt;=    less or equal
4503 &gt;     greater
4504 &gt;=    greater or equal
4505 </pre>
4506
4507 <p>
4508 In any comparison, the first operand
4509 must be <a href="#Assignability">assignable</a>
4510 to the type of the second operand, or vice versa.
4511 </p>
4512 <p>
4513 The equality operators <code>==</code> and <code>!=</code> apply
4514 to operands that are <i>comparable</i>.
4515 The ordering operators <code>&lt;</code>, <code>&lt;=</code>, <code>&gt;</code>, and <code>&gt;=</code>
4516 apply to operands that are <i>ordered</i>.
4517 These terms and the result of the comparisons are defined as follows:
4518 </p>
4519
4520 <ul>
4521         <li>
4522         Boolean values are comparable.
4523         Two boolean values are equal if they are either both
4524         <code>true</code> or both <code>false</code>.
4525         </li>
4526
4527         <li>
4528         Integer values are comparable and ordered, in the usual way.
4529         </li>
4530
4531         <li>
4532         Floating-point values are comparable and ordered,
4533         as defined by the IEEE-754 standard.
4534         </li>
4535
4536         <li>
4537         Complex values are comparable.
4538         Two complex values <code>u</code> and <code>v</code> are
4539         equal if both <code>real(u) == real(v)</code> and
4540         <code>imag(u) == imag(v)</code>.
4541         </li>
4542
4543         <li>
4544         String values are comparable and ordered, lexically byte-wise.
4545         </li>
4546
4547         <li>
4548         Pointer values are comparable.
4549         Two pointer values are equal if they point to the same variable or if both have value <code>nil</code>.
4550         Pointers to distinct <a href="#Size_and_alignment_guarantees">zero-size</a> variables may or may not be equal.
4551         </li>
4552
4553         <li>
4554         Channel values are comparable.
4555         Two channel values are equal if they were created by the same call to
4556         <a href="#Making_slices_maps_and_channels"><code>make</code></a>
4557         or if both have value <code>nil</code>.
4558         </li>
4559
4560         <li>
4561         Interface values are comparable.
4562         Two interface values are equal if they have <a href="#Type_identity">identical</a> dynamic types
4563         and equal dynamic values or if both have value <code>nil</code>.
4564         </li>
4565
4566         <li>
4567         A value <code>x</code> of non-interface type <code>X</code> and
4568         a value <code>t</code> of interface type <code>T</code> are comparable when values
4569         of type <code>X</code> are comparable and
4570         <code>X</code> implements <code>T</code>.
4571         They are equal if <code>t</code>'s dynamic type is identical to <code>X</code>
4572         and <code>t</code>'s dynamic value is equal to <code>x</code>.
4573         </li>
4574
4575         <li>
4576         Struct values are comparable if all their fields are comparable.
4577         Two struct values are equal if their corresponding
4578         non-<a href="#Blank_identifier">blank</a> fields are equal.
4579         </li>
4580
4581         <li>
4582         Array values are comparable if values of the array element type are comparable.
4583         Two array values are equal if their corresponding elements are equal.
4584         </li>
4585 </ul>
4586
4587 <p>
4588 A comparison of two interface values with identical dynamic types
4589 causes a <a href="#Run_time_panics">run-time panic</a> if values
4590 of that type are not comparable.  This behavior applies not only to direct interface
4591 value comparisons but also when comparing arrays of interface values
4592 or structs with interface-valued fields.
4593 </p>
4594
4595 <p>
4596 Slice, map, and function values are not comparable.
4597 However, as a special case, a slice, map, or function value may
4598 be compared to the predeclared identifier <code>nil</code>.
4599 Comparison of pointer, channel, and interface values to <code>nil</code>
4600 is also allowed and follows from the general rules above.
4601 </p>
4602
4603 <pre>
4604 const c = 3 &lt; 4            // c is the untyped boolean constant true
4605
4606 type MyBool bool
4607 var x, y int
4608 var (
4609         // The result of a comparison is an untyped boolean.
4610         // The usual assignment rules apply.
4611         b3        = x == y // b3 has type bool
4612         b4 bool   = x == y // b4 has type bool
4613         b5 MyBool = x == y // b5 has type MyBool
4614 )
4615 </pre>
4616
4617 <h3 id="Logical_operators">Logical operators</h3>
4618
4619 <p>
4620 Logical operators apply to <a href="#Boolean_types">boolean</a> values
4621 and yield a result of the same type as the operands.
4622 The right operand is evaluated conditionally.
4623 </p>
4624
4625 <pre class="grammar">
4626 &amp;&amp;    conditional AND    p &amp;&amp; q  is  "if p then q else false"
4627 ||    conditional OR     p || q  is  "if p then true else q"
4628 !     NOT                !p      is  "not p"
4629 </pre>
4630
4631
4632 <h3 id="Address_operators">Address operators</h3>
4633
4634 <p>
4635 For an operand <code>x</code> of type <code>T</code>, the address operation
4636 <code>&amp;x</code> generates a pointer of type <code>*T</code> to <code>x</code>.
4637 The operand must be <i>addressable</i>,
4638 that is, either a variable, pointer indirection, or slice indexing
4639 operation; or a field selector of an addressable struct operand;
4640 or an array indexing operation of an addressable array.
4641 As an exception to the addressability requirement, <code>x</code> may also be a
4642 (possibly parenthesized)
4643 <a href="#Composite_literals">composite literal</a>.
4644 If the evaluation of <code>x</code> would cause a <a href="#Run_time_panics">run-time panic</a>,
4645 then the evaluation of <code>&amp;x</code> does too.
4646 </p>
4647
4648 <p>
4649 For an operand <code>x</code> of pointer type <code>*T</code>, the pointer
4650 indirection <code>*x</code> denotes the <a href="#Variables">variable</a> of type <code>T</code> pointed
4651 to by <code>x</code>.
4652 If <code>x</code> is <code>nil</code>, an attempt to evaluate <code>*x</code>
4653 will cause a <a href="#Run_time_panics">run-time panic</a>.
4654 </p>
4655
4656 <pre>
4657 &amp;x
4658 &amp;a[f(2)]
4659 &amp;Point{2, 3}
4660 *p
4661 *pf(x)
4662
4663 var x *int = nil
4664 *x   // causes a run-time panic
4665 &amp;*x  // causes a run-time panic
4666 </pre>
4667
4668
4669 <h3 id="Receive_operator">Receive operator</h3>
4670
4671 <p>
4672 For an operand <code>ch</code> of <a href="#Channel_types">channel type</a>,
4673 the value of the receive operation <code>&lt;-ch</code> is the value received
4674 from the channel <code>ch</code>. The channel direction must permit receive operations,
4675 and the type of the receive operation is the element type of the channel.
4676 The expression blocks until a value is available.
4677 Receiving from a <code>nil</code> channel blocks forever.
4678 A receive operation on a <a href="#Close">closed</a> channel can always proceed
4679 immediately, yielding the element type's <a href="#The_zero_value">zero value</a>
4680 after any previously sent values have been received.
4681 </p>
4682
4683 <pre>
4684 v1 := &lt;-ch
4685 v2 = &lt;-ch
4686 f(&lt;-ch)
4687 &lt;-strobe  // wait until clock pulse and discard received value
4688 </pre>
4689
4690 <p>
4691 A receive expression used in an <a href="#Assignments">assignment</a> or initialization of the special form
4692 </p>
4693
4694 <pre>
4695 x, ok = &lt;-ch
4696 x, ok := &lt;-ch
4697 var x, ok = &lt;-ch
4698 var x, ok T = &lt;-ch
4699 </pre>
4700
4701 <p>
4702 yields an additional untyped boolean result reporting whether the
4703 communication succeeded. The value of <code>ok</code> is <code>true</code>
4704 if the value received was delivered by a successful send operation to the
4705 channel, or <code>false</code> if it is a zero value generated because the
4706 channel is closed and empty.
4707 </p>
4708
4709
4710 <h3 id="Conversions">Conversions</h3>
4711
4712 <p>
4713 A conversion changes the <a href="#Types">type</a> of an expression
4714 to the type specified by the conversion.
4715 A conversion may appear literally in the source, or it may be <i>implied</i>
4716 by the context in which an expression appears.
4717 </p>
4718
4719 <p>
4720 An <i>explicit</i> conversion is an expression of the form <code>T(x)</code>
4721 where <code>T</code> is a type and <code>x</code> is an expression
4722 that can be converted to type <code>T</code>.
4723 </p>
4724
4725 <pre class="ebnf">
4726 Conversion = Type "(" Expression [ "," ] ")" .
4727 </pre>
4728
4729 <p>
4730 If the type starts with the operator <code>*</code> or <code>&lt;-</code>,
4731 or if the type starts with the keyword <code>func</code>
4732 and has no result list, it must be parenthesized when
4733 necessary to avoid ambiguity:
4734 </p>
4735
4736 <pre>
4737 *Point(p)        // same as *(Point(p))
4738 (*Point)(p)      // p is converted to *Point
4739 &lt;-chan int(c)    // same as &lt;-(chan int(c))
4740 (&lt;-chan int)(c)  // c is converted to &lt;-chan int
4741 func()(x)        // function signature func() x
4742 (func())(x)      // x is converted to func()
4743 (func() int)(x)  // x is converted to func() int
4744 func() int(x)    // x is converted to func() int (unambiguous)
4745 </pre>
4746
4747 <p>
4748 A <a href="#Constants">constant</a> value <code>x</code> can be converted to
4749 type <code>T</code> if <code>x</code> is <a href="#Representability">representable</a>
4750 by a value of <code>T</code>.
4751 As a special case, an integer constant <code>x</code> can be explicitly converted to a
4752 <a href="#String_types">string type</a> using the
4753 <a href="#Conversions_to_and_from_a_string_type">same rule</a>
4754 as for non-constant <code>x</code>.
4755 </p>
4756
4757 <p>
4758 Converting a constant to a type that is not a <a href="#Type_parameters">type parameter</a>
4759 yields a typed constant.
4760 Converting a constant to a type parameter yields a non-constant value of that type.     
4761 </p>
4762
4763 <pre>
4764 uint(iota)               // iota value of type uint
4765 float32(2.718281828)     // 2.718281828 of type float32
4766 complex128(1)            // 1.0 + 0.0i of type complex128
4767 float32(0.49999999)      // 0.5 of type float32
4768 float64(-1e-1000)        // 0.0 of type float64
4769 string('x')              // "x" of type string
4770 string(0x266c)           // "♬" of type string
4771 MyString("foo" + "bar")  // "foobar" of type MyString
4772 string([]byte{'a'})      // not a constant: []byte{'a'} is not a constant
4773 (*int)(nil)              // not a constant: nil is not a constant, *int is not a boolean, numeric, or string type
4774 int(1.2)                 // illegal: 1.2 cannot be represented as an int
4775 string(65.0)             // illegal: 65.0 is not an integer constant
4776 </pre>
4777
4778 <p>
4779 A non-constant value <code>x</code> can be converted to type <code>T</code>
4780 in any of these cases:
4781 </p>
4782
4783 <ul>
4784         <li>
4785         <code>x</code> is <a href="#Assignability">assignable</a>
4786         to <code>T</code>.
4787         </li>
4788         <li>
4789         ignoring struct tags (see below),
4790         <code>x</code>'s type and <code>T</code> are not
4791         <a href="#Type_parameters">type parameters</a> but have
4792         <a href="#Type_identity">identical</a> <a href="#Types">underlying types</a>.
4793         </li>
4794         <li>
4795         ignoring struct tags (see below),
4796         <code>x</code>'s type and <code>T</code> are pointer types
4797         that are not <a href="#Types">named types</a>,
4798         and their pointer base types are not type parameters but
4799         have identical underlying types.
4800         </li>
4801         <li>
4802         <code>x</code>'s type and <code>T</code> are both integer or floating
4803         point types.
4804         </li>
4805         <li>
4806         <code>x</code>'s type and <code>T</code> are both complex types.
4807         </li>
4808         <li>
4809         <code>x</code> is an integer or a slice of bytes or runes
4810         and <code>T</code> is a string type.
4811         </li>
4812         <li>
4813         <code>x</code> is a string and <code>T</code> is a slice of bytes or runes.
4814         </li>
4815         <li>
4816         <code>x</code> is a slice, <code>T</code> is a pointer to an array,
4817         and the slice and array types have <a href="#Type_identity">identical</a> element types.
4818         </li>
4819 </ul>
4820
4821 <p>
4822 Additionally, if <code>T</code> or </code><code>x's</code> type <code>V</code> are type
4823 parameters with <a href="#Structure_of_interfaces">specific types</a>, <code>x</code>
4824 can also be converted to type <code>T</code> if one of the following conditions applies:
4825 </p>
4826
4827 <ul>
4828 <li>
4829 Both <code>V</code> and <code>T</code> are type parameters and a value of each
4830 specific type of <code>V</code> can be converted to each specific type
4831 of <code>T</code>.
4832 </li>
4833 <li>
4834 Only <code>V</code> is a type parameter and a value of each
4835 specific type of <code>V</code> can be converted to <code>T</code>.
4836 </li>
4837 <li>
4838 Only <code>T</code> is a type parameter and <code>x</code> can be converted to each
4839 specific type of <code>T</code>.
4840 </li>
4841 </ul>
4842
4843 <p>
4844 <a href="#Struct_types">Struct tags</a> are ignored when comparing struct types
4845 for identity for the purpose of conversion:
4846 </p>
4847
4848 <pre>
4849 type Person struct {
4850         Name    string
4851         Address *struct {
4852                 Street string
4853                 City   string
4854         }
4855 }
4856
4857 var data *struct {
4858         Name    string `json:"name"`
4859         Address *struct {
4860                 Street string `json:"street"`
4861                 City   string `json:"city"`
4862         } `json:"address"`
4863 }
4864
4865 var person = (*Person)(data)  // ignoring tags, the underlying types are identical
4866 </pre>
4867
4868 <p>
4869 Specific rules apply to (non-constant) conversions between numeric types or
4870 to and from a string type.
4871 These conversions may change the representation of <code>x</code>
4872 and incur a run-time cost.
4873 All other conversions only change the type but not the representation
4874 of <code>x</code>.
4875 </p>
4876
4877 <p>
4878 There is no linguistic mechanism to convert between pointers and integers.
4879 The package <a href="#Package_unsafe"><code>unsafe</code></a>
4880 implements this functionality under
4881 restricted circumstances.
4882 </p>
4883
4884 <h4>Conversions between numeric types</h4>
4885
4886 <p>
4887 For the conversion of non-constant numeric values, the following rules apply:
4888 </p>
4889
4890 <ol>
4891 <li>
4892 When converting between integer types, if the value is a signed integer, it is
4893 sign extended to implicit infinite precision; otherwise it is zero extended.
4894 It is then truncated to fit in the result type's size.
4895 For example, if <code>v := uint16(0x10F0)</code>, then <code>uint32(int8(v)) == 0xFFFFFFF0</code>.
4896 The conversion always yields a valid value; there is no indication of overflow.
4897 </li>
4898 <li>
4899 When converting a floating-point number to an integer, the fraction is discarded
4900 (truncation towards zero).
4901 </li>
4902 <li>
4903 When converting an integer or floating-point number to a floating-point type,
4904 or a complex number to another complex type, the result value is rounded
4905 to the precision specified by the destination type.
4906 For instance, the value of a variable <code>x</code> of type <code>float32</code>
4907 may be stored using additional precision beyond that of an IEEE-754 32-bit number,
4908 but float32(x) represents the result of rounding <code>x</code>'s value to
4909 32-bit precision. Similarly, <code>x + 0.1</code> may use more than 32 bits
4910 of precision, but <code>float32(x + 0.1)</code> does not.
4911 </li>
4912 </ol>
4913
4914 <p>
4915 In all non-constant conversions involving floating-point or complex values,
4916 if the result type cannot represent the value the conversion
4917 succeeds but the result value is implementation-dependent.
4918 </p>
4919
4920 <h4 id="Conversions_to_and_from_a_string_type">Conversions to and from a string type</h4>
4921
4922 <ol>
4923 <li>
4924 Converting a signed or unsigned integer value to a string type yields a
4925 string containing the UTF-8 representation of the integer. Values outside
4926 the range of valid Unicode code points are converted to <code>"\uFFFD"</code>.
4927
4928 <pre>
4929 string('a')       // "a"
4930 string(-1)        // "\ufffd" == "\xef\xbf\xbd"
4931 string(0xf8)      // "\u00f8" == "ø" == "\xc3\xb8"
4932 type MyString string
4933 MyString(0x65e5)  // "\u65e5" == "日" == "\xe6\x97\xa5"
4934 </pre>
4935 </li>
4936
4937 <li>
4938 Converting a slice of bytes to a string type yields
4939 a string whose successive bytes are the elements of the slice.
4940
4941 <pre>
4942 string([]byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'})   // "hellø"
4943 string([]byte{})                                     // ""
4944 string([]byte(nil))                                  // ""
4945
4946 type MyBytes []byte
4947 string(MyBytes{'h', 'e', 'l', 'l', '\xc3', '\xb8'})  // "hellø"
4948 </pre>
4949 </li>
4950
4951 <li>
4952 Converting a slice of runes to a string type yields
4953 a string that is the concatenation of the individual rune values
4954 converted to strings.
4955
4956 <pre>
4957 string([]rune{0x767d, 0x9d6c, 0x7fd4})   // "\u767d\u9d6c\u7fd4" == "白鵬翔"
4958 string([]rune{})                         // ""
4959 string([]rune(nil))                      // ""
4960
4961 type MyRunes []rune
4962 string(MyRunes{0x767d, 0x9d6c, 0x7fd4})  // "\u767d\u9d6c\u7fd4" == "白鵬翔"
4963 </pre>
4964 </li>
4965
4966 <li>
4967 Converting a value of a string type to a slice of bytes type
4968 yields a slice whose successive elements are the bytes of the string.
4969
4970 <pre>
4971 []byte("hellø")   // []byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'}
4972 []byte("")        // []byte{}
4973
4974 MyBytes("hellø")  // []byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'}
4975 </pre>
4976 </li>
4977
4978 <li>
4979 Converting a value of a string type to a slice of runes type
4980 yields a slice containing the individual Unicode code points of the string.
4981
4982 <pre>
4983 []rune(MyString("白鵬翔"))  // []rune{0x767d, 0x9d6c, 0x7fd4}
4984 []rune("")                 // []rune{}
4985
4986 MyRunes("白鵬翔")           // []rune{0x767d, 0x9d6c, 0x7fd4}
4987 </pre>
4988 </li>
4989 </ol>
4990
4991 <h4 id="Conversions_from_slice_to_array_pointer">Conversions from slice to array pointer</h4>
4992
4993 <p>
4994 Converting a slice to an array pointer yields a pointer to the underlying array of the slice.
4995 If the <a href="#Length_and_capacity">length</a> of the slice is less than the length of the array,
4996 a <a href="#Run_time_panics">run-time panic</a> occurs.
4997 </p>
4998
4999 <pre>
5000 s := make([]byte, 2, 4)
5001 s0 := (*[0]byte)(s)      // s0 != nil
5002 s1 := (*[1]byte)(s[1:])  // &amp;s1[0] == &amp;s[1]
5003 s2 := (*[2]byte)(s)      // &amp;s2[0] == &amp;s[0]
5004 s4 := (*[4]byte)(s)      // panics: len([4]byte) > len(s)
5005
5006 var t []string
5007 t0 := (*[0]string)(t)    // t0 == nil
5008 t1 := (*[1]string)(t)    // panics: len([1]string) > len(t)
5009
5010 u := make([]byte, 0)
5011 u0 := (*[0]byte)(u)      // u0 != nil
5012 </pre>
5013
5014 <h3 id="Constant_expressions">Constant expressions</h3>
5015
5016 <p>
5017 Constant expressions may contain only <a href="#Constants">constant</a>
5018 operands and are evaluated at compile time.
5019 </p>
5020
5021 <p>
5022 Untyped boolean, numeric, and string constants may be used as operands
5023 wherever it is legal to use an operand of boolean, numeric, or string type,
5024 respectively.
5025 </p>
5026
5027 <p>
5028 A constant <a href="#Comparison_operators">comparison</a> always yields
5029 an untyped boolean constant.  If the left operand of a constant
5030 <a href="#Operators">shift expression</a> is an untyped constant, the
5031 result is an integer constant; otherwise it is a constant of the same
5032 type as the left operand, which must be of
5033 <a href="#Numeric_types">integer type</a>.
5034 </p>
5035
5036 <p>
5037 Any other operation on untyped constants results in an untyped constant of the
5038 same kind; that is, a boolean, integer, floating-point, complex, or string
5039 constant.
5040 If the untyped operands of a binary operation (other than a shift) are of
5041 different kinds, the result is of the operand's kind that appears later in this
5042 list: integer, rune, floating-point, complex.
5043 For example, an untyped integer constant divided by an
5044 untyped complex constant yields an untyped complex constant.
5045 </p>
5046
5047 <pre>
5048 const a = 2 + 3.0          // a == 5.0   (untyped floating-point constant)
5049 const b = 15 / 4           // b == 3     (untyped integer constant)
5050 const c = 15 / 4.0         // c == 3.75  (untyped floating-point constant)
5051 const Θ float64 = 3/2      // Θ == 1.0   (type float64, 3/2 is integer division)
5052 const Π float64 = 3/2.     // Π == 1.5   (type float64, 3/2. is float division)
5053 const d = 1 &lt;&lt; 3.0         // d == 8     (untyped integer constant)
5054 const e = 1.0 &lt;&lt; 3         // e == 8     (untyped integer constant)
5055 const f = int32(1) &lt;&lt; 33   // illegal    (constant 8589934592 overflows int32)
5056 const g = float64(2) &gt;&gt; 1  // illegal    (float64(2) is a typed floating-point constant)
5057 const h = "foo" &gt; "bar"    // h == true  (untyped boolean constant)
5058 const j = true             // j == true  (untyped boolean constant)
5059 const k = 'w' + 1          // k == 'x'   (untyped rune constant)
5060 const l = "hi"             // l == "hi"  (untyped string constant)
5061 const m = string(k)        // m == "x"   (type string)
5062 const Σ = 1 - 0.707i       //            (untyped complex constant)
5063 const Δ = Σ + 2.0e-4       //            (untyped complex constant)
5064 const Φ = iota*1i - 1/1i   //            (untyped complex constant)
5065 </pre>
5066
5067 <p>
5068 Applying the built-in function <code>complex</code> to untyped
5069 integer, rune, or floating-point constants yields
5070 an untyped complex constant.
5071 </p>
5072
5073 <pre>
5074 const ic = complex(0, c)   // ic == 3.75i  (untyped complex constant)
5075 const iΘ = complex(0, Θ)   // iΘ == 1i     (type complex128)
5076 </pre>
5077
5078 <p>
5079 Constant expressions are always evaluated exactly; intermediate values and the
5080 constants themselves may require precision significantly larger than supported
5081 by any predeclared type in the language. The following are legal declarations:
5082 </p>
5083
5084 <pre>
5085 const Huge = 1 &lt;&lt; 100         // Huge == 1267650600228229401496703205376  (untyped integer constant)
5086 const Four int8 = Huge &gt;&gt; 98  // Four == 4                                (type int8)
5087 </pre>
5088
5089 <p>
5090 The divisor of a constant division or remainder operation must not be zero:
5091 </p>
5092
5093 <pre>
5094 3.14 / 0.0   // illegal: division by zero
5095 </pre>
5096
5097 <p>
5098 The values of <i>typed</i> constants must always be accurately
5099 <a href="#Representability">representable</a> by values
5100 of the constant type. The following constant expressions are illegal:
5101 </p>
5102
5103 <pre>
5104 uint(-1)     // -1 cannot be represented as a uint
5105 int(3.14)    // 3.14 cannot be represented as an int
5106 int64(Huge)  // 1267650600228229401496703205376 cannot be represented as an int64
5107 Four * 300   // operand 300 cannot be represented as an int8 (type of Four)
5108 Four * 100   // product 400 cannot be represented as an int8 (type of Four)
5109 </pre>
5110
5111 <p>
5112 The mask used by the unary bitwise complement operator <code>^</code> matches
5113 the rule for non-constants: the mask is all 1s for unsigned constants
5114 and -1 for signed and untyped constants.
5115 </p>
5116
5117 <pre>
5118 ^1         // untyped integer constant, equal to -2
5119 uint8(^1)  // illegal: same as uint8(-2), -2 cannot be represented as a uint8
5120 ^uint8(1)  // typed uint8 constant, same as 0xFF ^ uint8(1) = uint8(0xFE)
5121 int8(^1)   // same as int8(-2)
5122 ^int8(1)   // same as -1 ^ int8(1) = -2
5123 </pre>
5124
5125 <p>
5126 Implementation restriction: A compiler may use rounding while
5127 computing untyped floating-point or complex constant expressions; see
5128 the implementation restriction in the section
5129 on <a href="#Constants">constants</a>.  This rounding may cause a
5130 floating-point constant expression to be invalid in an integer
5131 context, even if it would be integral when calculated using infinite
5132 precision, and vice versa.
5133 </p>
5134
5135
5136 <h3 id="Order_of_evaluation">Order of evaluation</h3>
5137
5138 <p>
5139 At package level, <a href="#Package_initialization">initialization dependencies</a>
5140 determine the evaluation order of individual initialization expressions in
5141 <a href="#Variable_declarations">variable declarations</a>.
5142 Otherwise, when evaluating the <a href="#Operands">operands</a> of an
5143 expression, assignment, or
5144 <a href="#Return_statements">return statement</a>,
5145 all function calls, method calls, and
5146 communication operations are evaluated in lexical left-to-right
5147 order.
5148 </p>
5149
5150 <p>
5151 For example, in the (function-local) assignment
5152 </p>
5153 <pre>
5154 y[f()], ok = g(h(), i()+x[j()], &lt;-c), k()
5155 </pre>
5156 <p>
5157 the function calls and communication happen in the order
5158 <code>f()</code>, <code>h()</code>, <code>i()</code>, <code>j()</code>,
5159 <code>&lt;-c</code>, <code>g()</code>, and <code>k()</code>.
5160 However, the order of those events compared to the evaluation
5161 and indexing of <code>x</code> and the evaluation
5162 of <code>y</code> is not specified.
5163 </p>
5164
5165 <pre>
5166 a := 1
5167 f := func() int { a++; return a }
5168 x := []int{a, f()}            // x may be [1, 2] or [2, 2]: evaluation order between a and f() is not specified
5169 m := map[int]int{a: 1, a: 2}  // m may be {2: 1} or {2: 2}: evaluation order between the two map assignments is not specified
5170 n := map[int]int{a: f()}      // n may be {2: 3} or {3: 3}: evaluation order between the key and the value is not specified
5171 </pre>
5172
5173 <p>
5174 At package level, initialization dependencies override the left-to-right rule
5175 for individual initialization expressions, but not for operands within each
5176 expression:
5177 </p>
5178
5179 <pre>
5180 var a, b, c = f() + v(), g(), sqr(u()) + v()
5181
5182 func f() int        { return c }
5183 func g() int        { return a }
5184 func sqr(x int) int { return x*x }
5185
5186 // functions u and v are independent of all other variables and functions
5187 </pre>
5188
5189 <p>
5190 The function calls happen in the order
5191 <code>u()</code>, <code>sqr()</code>, <code>v()</code>,
5192 <code>f()</code>, <code>v()</code>, and <code>g()</code>.
5193 </p>
5194
5195 <p>
5196 Floating-point operations within a single expression are evaluated according to
5197 the associativity of the operators.  Explicit parentheses affect the evaluation
5198 by overriding the default associativity.
5199 In the expression <code>x + (y + z)</code> the addition <code>y + z</code>
5200 is performed before adding <code>x</code>.
5201 </p>
5202
5203 <h2 id="Statements">Statements</h2>
5204
5205 <p>
5206 Statements control execution.
5207 </p>
5208
5209 <pre class="ebnf">
5210 Statement =
5211         Declaration | LabeledStmt | SimpleStmt |
5212         GoStmt | ReturnStmt | BreakStmt | ContinueStmt | GotoStmt |
5213         FallthroughStmt | Block | IfStmt | SwitchStmt | SelectStmt | ForStmt |
5214         DeferStmt .
5215
5216 SimpleStmt = EmptyStmt | ExpressionStmt | SendStmt | IncDecStmt | Assignment | ShortVarDecl .
5217 </pre>
5218
5219 <h3 id="Terminating_statements">Terminating statements</h3>
5220
5221 <p>
5222 A <i>terminating statement</i> interrupts the regular flow of control in
5223 a <a href="#Blocks">block</a>. The following statements are terminating:
5224 </p>
5225
5226 <ol>
5227 <li>
5228         A <a href="#Return_statements">"return"</a> or
5229         <a href="#Goto_statements">"goto"</a> statement.
5230         <!-- ul below only for regular layout -->
5231         <ul> </ul>
5232 </li>
5233
5234 <li>
5235         A call to the built-in function
5236         <a href="#Handling_panics"><code>panic</code></a>.
5237         <!-- ul below only for regular layout -->
5238         <ul> </ul>
5239 </li>
5240
5241 <li>
5242         A <a href="#Blocks">block</a> in which the statement list ends in a terminating statement.
5243         <!-- ul below only for regular layout -->
5244         <ul> </ul>
5245 </li>
5246
5247 <li>
5248         An <a href="#If_statements">"if" statement</a> in which:
5249         <ul>
5250         <li>the "else" branch is present, and</li>
5251         <li>both branches are terminating statements.</li>
5252         </ul>
5253 </li>
5254
5255 <li>
5256         A <a href="#For_statements">"for" statement</a> in which:
5257         <ul>
5258         <li>there are no "break" statements referring to the "for" statement, and</li>
5259         <li>the loop condition is absent, and</li>
5260         <li>the "for" statement does not use a range clause.</li>
5261         </ul>
5262 </li>
5263
5264 <li>
5265         A <a href="#Switch_statements">"switch" statement</a> in which:
5266         <ul>
5267         <li>there are no "break" statements referring to the "switch" statement,</li>
5268         <li>there is a default case, and</li>
5269         <li>the statement lists in each case, including the default, end in a terminating
5270             statement, or a possibly labeled <a href="#Fallthrough_statements">"fallthrough"
5271             statement</a>.</li>
5272         </ul>
5273 </li>
5274
5275 <li>
5276         A <a href="#Select_statements">"select" statement</a> in which:
5277         <ul>
5278         <li>there are no "break" statements referring to the "select" statement, and</li>
5279         <li>the statement lists in each case, including the default if present,
5280             end in a terminating statement.</li>
5281         </ul>
5282 </li>
5283
5284 <li>
5285         A <a href="#Labeled_statements">labeled statement</a> labeling
5286         a terminating statement.
5287 </li>
5288 </ol>
5289
5290 <p>
5291 All other statements are not terminating.
5292 </p>
5293
5294 <p>
5295 A <a href="#Blocks">statement list</a> ends in a terminating statement if the list
5296 is not empty and its final non-empty statement is terminating.
5297 </p>
5298
5299
5300 <h3 id="Empty_statements">Empty statements</h3>
5301
5302 <p>
5303 The empty statement does nothing.
5304 </p>
5305
5306 <pre class="ebnf">
5307 EmptyStmt = .
5308 </pre>
5309
5310
5311 <h3 id="Labeled_statements">Labeled statements</h3>
5312
5313 <p>
5314 A labeled statement may be the target of a <code>goto</code>,
5315 <code>break</code> or <code>continue</code> statement.
5316 </p>
5317
5318 <pre class="ebnf">
5319 LabeledStmt = Label ":" Statement .
5320 Label       = identifier .
5321 </pre>
5322
5323 <pre>
5324 Error: log.Panic("error encountered")
5325 </pre>
5326
5327
5328 <h3 id="Expression_statements">Expression statements</h3>
5329
5330 <p>
5331 With the exception of specific built-in functions,
5332 function and method <a href="#Calls">calls</a> and
5333 <a href="#Receive_operator">receive operations</a>
5334 can appear in statement context. Such statements may be parenthesized.
5335 </p>
5336
5337 <pre class="ebnf">
5338 ExpressionStmt = Expression .
5339 </pre>
5340
5341 <p>
5342 The following built-in functions are not permitted in statement context:
5343 </p>
5344
5345 <pre>
5346 append cap complex imag len make new real
5347 unsafe.Add unsafe.Alignof unsafe.Offsetof unsafe.Sizeof unsafe.Slice
5348 </pre>
5349
5350 <pre>
5351 h(x+y)
5352 f.Close()
5353 &lt;-ch
5354 (&lt;-ch)
5355 len("foo")  // illegal if len is the built-in function
5356 </pre>
5357
5358
5359 <h3 id="Send_statements">Send statements</h3>
5360
5361 <p>
5362 A send statement sends a value on a channel.
5363 The channel expression must be of <a href="#Channel_types">channel type</a>,
5364 the channel direction must permit send operations,
5365 and the type of the value to be sent must be <a href="#Assignability">assignable</a>
5366 to the channel's element type.
5367 </p>
5368
5369 <pre class="ebnf">
5370 SendStmt = Channel "&lt;-" Expression .
5371 Channel  = Expression .
5372 </pre>
5373
5374 <p>
5375 Both the channel and the value expression are evaluated before communication
5376 begins. Communication blocks until the send can proceed.
5377 A send on an unbuffered channel can proceed if a receiver is ready.
5378 A send on a buffered channel can proceed if there is room in the buffer.
5379 A send on a closed channel proceeds by causing a <a href="#Run_time_panics">run-time panic</a>.
5380 A send on a <code>nil</code> channel blocks forever.
5381 </p>
5382
5383 <pre>
5384 ch &lt;- 3  // send value 3 to channel ch
5385 </pre>
5386
5387
5388 <h3 id="IncDec_statements">IncDec statements</h3>
5389
5390 <p>
5391 The "++" and "--" statements increment or decrement their operands
5392 by the untyped <a href="#Constants">constant</a> <code>1</code>.
5393 As with an assignment, the operand must be <a href="#Address_operators">addressable</a>
5394 or a map index expression.
5395 </p>
5396
5397 <pre class="ebnf">
5398 IncDecStmt = Expression ( "++" | "--" ) .
5399 </pre>
5400
5401 <p>
5402 The following <a href="#Assignments">assignment statements</a> are semantically
5403 equivalent:
5404 </p>
5405
5406 <pre class="grammar">
5407 IncDec statement    Assignment
5408 x++                 x += 1
5409 x--                 x -= 1
5410 </pre>
5411
5412
5413 <h3 id="Assignments">Assignments</h3>
5414
5415 <pre class="ebnf">
5416 Assignment = ExpressionList assign_op ExpressionList .
5417
5418 assign_op = [ add_op | mul_op ] "=" .
5419 </pre>
5420
5421 <p>
5422 Each left-hand side operand must be <a href="#Address_operators">addressable</a>,
5423 a map index expression, or (for <code>=</code> assignments only) the
5424 <a href="#Blank_identifier">blank identifier</a>.
5425 Operands may be parenthesized.
5426 </p>
5427
5428 <pre>
5429 x = 1
5430 *p = f()
5431 a[i] = 23
5432 (k) = &lt;-ch  // same as: k = &lt;-ch
5433 </pre>
5434
5435 <p>
5436 An <i>assignment operation</i> <code>x</code> <i>op</i><code>=</code>
5437 <code>y</code> where <i>op</i> is a binary <a href="#Arithmetic_operators">arithmetic operator</a>
5438 is equivalent to <code>x</code> <code>=</code> <code>x</code> <i>op</i>
5439 <code>(y)</code> but evaluates <code>x</code>
5440 only once.  The <i>op</i><code>=</code> construct is a single token.
5441 In assignment operations, both the left- and right-hand expression lists
5442 must contain exactly one single-valued expression, and the left-hand
5443 expression must not be the blank identifier.
5444 </p>
5445
5446 <pre>
5447 a[i] &lt;&lt;= 2
5448 i &amp;^= 1&lt;&lt;n
5449 </pre>
5450
5451 <p>
5452 A tuple assignment assigns the individual elements of a multi-valued
5453 operation to a list of variables.  There are two forms.  In the
5454 first, the right hand operand is a single multi-valued expression
5455 such as a function call, a <a href="#Channel_types">channel</a> or
5456 <a href="#Map_types">map</a> operation, or a <a href="#Type_assertions">type assertion</a>.
5457 The number of operands on the left
5458 hand side must match the number of values.  For instance, if
5459 <code>f</code> is a function returning two values,
5460 </p>
5461
5462 <pre>
5463 x, y = f()
5464 </pre>
5465
5466 <p>
5467 assigns the first value to <code>x</code> and the second to <code>y</code>.
5468 In the second form, the number of operands on the left must equal the number
5469 of expressions on the right, each of which must be single-valued, and the
5470 <i>n</i>th expression on the right is assigned to the <i>n</i>th
5471 operand on the left:
5472 </p>
5473
5474 <pre>
5475 one, two, three = '一', '二', '三'
5476 </pre>
5477
5478 <p>
5479 The <a href="#Blank_identifier">blank identifier</a> provides a way to
5480 ignore right-hand side values in an assignment:
5481 </p>
5482
5483 <pre>
5484 _ = x       // evaluate x but ignore it
5485 x, _ = f()  // evaluate f() but ignore second result value
5486 </pre>
5487
5488 <p>
5489 The assignment proceeds in two phases.
5490 First, the operands of <a href="#Index_expressions">index expressions</a>
5491 and <a href="#Address_operators">pointer indirections</a>
5492 (including implicit pointer indirections in <a href="#Selectors">selectors</a>)
5493 on the left and the expressions on the right are all
5494 <a href="#Order_of_evaluation">evaluated in the usual order</a>.
5495 Second, the assignments are carried out in left-to-right order.
5496 </p>
5497
5498 <pre>
5499 a, b = b, a  // exchange a and b
5500
5501 x := []int{1, 2, 3}
5502 i := 0
5503 i, x[i] = 1, 2  // set i = 1, x[0] = 2
5504
5505 i = 0
5506 x[i], i = 2, 1  // set x[0] = 2, i = 1
5507
5508 x[0], x[0] = 1, 2  // set x[0] = 1, then x[0] = 2 (so x[0] == 2 at end)
5509
5510 x[1], x[3] = 4, 5  // set x[1] = 4, then panic setting x[3] = 5.
5511
5512 type Point struct { x, y int }
5513 var p *Point
5514 x[2], p.x = 6, 7  // set x[2] = 6, then panic setting p.x = 7
5515
5516 i = 2
5517 x = []int{3, 5, 7}
5518 for i, x[i] = range x {  // set i, x[2] = 0, x[0]
5519         break
5520 }
5521 // after this loop, i == 0 and x == []int{3, 5, 3}
5522 </pre>
5523
5524 <p>
5525 In assignments, each value must be <a href="#Assignability">assignable</a>
5526 to the type of the operand to which it is assigned, with the following special cases:
5527 </p>
5528
5529 <ol>
5530 <li>
5531         Any typed value may be assigned to the blank identifier.
5532 </li>
5533
5534 <li>
5535         If an untyped constant
5536         is assigned to a variable of interface type or the blank identifier,
5537         the constant is first implicitly <a href="#Conversions">converted</a> to its
5538          <a href="#Constants">default type</a>.
5539 </li>
5540
5541 <li>
5542         If an untyped boolean value is assigned to a variable of interface type or
5543         the blank identifier, it is first implicitly converted to type <code>bool</code>.
5544 </li>
5545 </ol>
5546
5547 <h3 id="If_statements">If statements</h3>
5548
5549 <p>
5550 "If" statements specify the conditional execution of two branches
5551 according to the value of a boolean expression.  If the expression
5552 evaluates to true, the "if" branch is executed, otherwise, if
5553 present, the "else" branch is executed.
5554 </p>
5555
5556 <pre class="ebnf">
5557 IfStmt = "if" [ SimpleStmt ";" ] Expression Block [ "else" ( IfStmt | Block ) ] .
5558 </pre>
5559
5560 <pre>
5561 if x &gt; max {
5562         x = max
5563 }
5564 </pre>
5565
5566 <p>
5567 The expression may be preceded by a simple statement, which
5568 executes before the expression is evaluated.
5569 </p>
5570
5571 <pre>
5572 if x := f(); x &lt; y {
5573         return x
5574 } else if x &gt; z {
5575         return z
5576 } else {
5577         return y
5578 }
5579 </pre>
5580
5581
5582 <h3 id="Switch_statements">Switch statements</h3>
5583
5584 <p>
5585 "Switch" statements provide multi-way execution.
5586 An expression or type is compared to the "cases"
5587 inside the "switch" to determine which branch
5588 to execute.
5589 </p>
5590
5591 <pre class="ebnf">
5592 SwitchStmt = ExprSwitchStmt | TypeSwitchStmt .
5593 </pre>
5594
5595 <p>
5596 There are two forms: expression switches and type switches.
5597 In an expression switch, the cases contain expressions that are compared
5598 against the value of the switch expression.
5599 In a type switch, the cases contain types that are compared against the
5600 type of a specially annotated switch expression.
5601 The switch expression is evaluated exactly once in a switch statement.
5602 </p>
5603
5604 <h4 id="Expression_switches">Expression switches</h4>
5605
5606 <p>
5607 In an expression switch,
5608 the switch expression is evaluated and
5609 the case expressions, which need not be constants,
5610 are evaluated left-to-right and top-to-bottom; the first one that equals the
5611 switch expression
5612 triggers execution of the statements of the associated case;
5613 the other cases are skipped.
5614 If no case matches and there is a "default" case,
5615 its statements are executed.
5616 There can be at most one default case and it may appear anywhere in the
5617 "switch" statement.
5618 A missing switch expression is equivalent to the boolean value
5619 <code>true</code>.
5620 </p>
5621
5622 <pre class="ebnf">
5623 ExprSwitchStmt = "switch" [ SimpleStmt ";" ] [ Expression ] "{" { ExprCaseClause } "}" .
5624 ExprCaseClause = ExprSwitchCase ":" StatementList .
5625 ExprSwitchCase = "case" ExpressionList | "default" .
5626 </pre>
5627
5628 <p>
5629 If the switch expression evaluates to an untyped constant, it is first implicitly
5630 <a href="#Conversions">converted</a> to its <a href="#Constants">default type</a>.
5631 The predeclared untyped value <code>nil</code> cannot be used as a switch expression.
5632 The switch expression type must be <a href="#Comparison_operators">comparable</a>.
5633 </p>
5634
5635 <p>
5636 If a case expression is untyped, it is first implicitly <a href="#Conversions">converted</a>
5637 to the type of the switch expression.
5638 For each (possibly converted) case expression <code>x</code> and the value <code>t</code>
5639 of the switch expression, <code>x == t</code> must be a valid <a href="#Comparison_operators">comparison</a>.
5640 </p>
5641
5642 <p>
5643 In other words, the switch expression is treated as if it were used to declare and
5644 initialize a temporary variable <code>t</code> without explicit type; it is that
5645 value of <code>t</code> against which each case expression <code>x</code> is tested
5646 for equality.
5647 </p>
5648
5649 <p>
5650 In a case or default clause, the last non-empty statement
5651 may be a (possibly <a href="#Labeled_statements">labeled</a>)
5652 <a href="#Fallthrough_statements">"fallthrough" statement</a> to
5653 indicate that control should flow from the end of this clause to
5654 the first statement of the next clause.
5655 Otherwise control flows to the end of the "switch" statement.
5656 A "fallthrough" statement may appear as the last statement of all
5657 but the last clause of an expression switch.
5658 </p>
5659
5660 <p>
5661 The switch expression may be preceded by a simple statement, which
5662 executes before the expression is evaluated.
5663 </p>
5664
5665 <pre>
5666 switch tag {
5667 default: s3()
5668 case 0, 1, 2, 3: s1()
5669 case 4, 5, 6, 7: s2()
5670 }
5671
5672 switch x := f(); {  // missing switch expression means "true"
5673 case x &lt; 0: return -x
5674 default: return x
5675 }
5676
5677 switch {
5678 case x &lt; y: f1()
5679 case x &lt; z: f2()
5680 case x == 4: f3()
5681 }
5682 </pre>
5683
5684 <p>
5685 Implementation restriction: A compiler may disallow multiple case
5686 expressions evaluating to the same constant.
5687 For instance, the current compilers disallow duplicate integer,
5688 floating point, or string constants in case expressions.
5689 </p>
5690
5691 <h4 id="Type_switches">Type switches</h4>
5692
5693 <p>
5694 A type switch compares types rather than values. It is otherwise similar
5695 to an expression switch. It is marked by a special switch expression that
5696 has the form of a <a href="#Type_assertions">type assertion</a>
5697 using the keyword <code>type</code> rather than an actual type:
5698 </p>
5699
5700 <pre>
5701 switch x.(type) {
5702 // cases
5703 }
5704 </pre>
5705
5706 <p>
5707 Cases then match actual types <code>T</code> against the dynamic type of the
5708 expression <code>x</code>. As with type assertions, <code>x</code> must be of
5709 <a href="#Interface_types">interface type</a>, but not a
5710 <a href="#Type_parameters">type parameter</a>, and each non-interface type
5711 <code>T</code> listed in a case must implement the type of <code>x</code>.
5712 The types listed in the cases of a type switch must all be
5713 <a href="#Type_identity">different</a>.
5714 </p>
5715
5716 <pre class="ebnf">
5717 TypeSwitchStmt  = "switch" [ SimpleStmt ";" ] TypeSwitchGuard "{" { TypeCaseClause } "}" .
5718 TypeSwitchGuard = [ identifier ":=" ] PrimaryExpr "." "(" "type" ")" .
5719 TypeCaseClause  = TypeSwitchCase ":" StatementList .
5720 TypeSwitchCase  = "case" TypeList | "default" .
5721 </pre>
5722
5723 <p>
5724 The TypeSwitchGuard may include a
5725 <a href="#Short_variable_declarations">short variable declaration</a>.
5726 When that form is used, the variable is declared at the end of the
5727 TypeSwitchCase in the <a href="#Blocks">implicit block</a> of each clause.
5728 In clauses with a case listing exactly one type, the variable
5729 has that type; otherwise, the variable has the type of the expression
5730 in the TypeSwitchGuard.
5731 </p>
5732
5733 <p>
5734 Instead of a type, a case may use the predeclared identifier
5735 <a href="#Predeclared_identifiers"><code>nil</code></a>;
5736 that case is selected when the expression in the TypeSwitchGuard
5737 is a <code>nil</code> interface value.
5738 There may be at most one <code>nil</code> case.
5739 </p>
5740
5741 <p>
5742 Given an expression <code>x</code> of type <code>interface{}</code>,
5743 the following type switch:
5744 </p>
5745
5746 <pre>
5747 switch i := x.(type) {
5748 case nil:
5749         printString("x is nil")                // type of i is type of x (interface{})
5750 case int:
5751         printInt(i)                            // type of i is int
5752 case float64:
5753         printFloat64(i)                        // type of i is float64
5754 case func(int) float64:
5755         printFunction(i)                       // type of i is func(int) float64
5756 case bool, string:
5757         printString("type is bool or string")  // type of i is type of x (interface{})
5758 default:
5759         printString("don't know the type")     // type of i is type of x (interface{})
5760 }
5761 </pre>
5762
5763 <p>
5764 could be rewritten:
5765 </p>
5766
5767 <pre>
5768 v := x  // x is evaluated exactly once
5769 if v == nil {
5770         i := v                                 // type of i is type of x (interface{})
5771         printString("x is nil")
5772 } else if i, isInt := v.(int); isInt {
5773         printInt(i)                            // type of i is int
5774 } else if i, isFloat64 := v.(float64); isFloat64 {
5775         printFloat64(i)                        // type of i is float64
5776 } else if i, isFunc := v.(func(int) float64); isFunc {
5777         printFunction(i)                       // type of i is func(int) float64
5778 } else {
5779         _, isBool := v.(bool)
5780         _, isString := v.(string)
5781         if isBool || isString {
5782                 i := v                         // type of i is type of x (interface{})
5783                 printString("type is bool or string")
5784         } else {
5785                 i := v                         // type of i is type of x (interface{})
5786                 printString("don't know the type")
5787         }
5788 }
5789 </pre>
5790
5791 <p>
5792 The type switch guard may be preceded by a simple statement, which
5793 executes before the guard is evaluated.
5794 </p>
5795
5796 <p>
5797 The "fallthrough" statement is not permitted in a type switch.
5798 </p>
5799
5800 <h3 id="For_statements">For statements</h3>
5801
5802 <p>
5803 A "for" statement specifies repeated execution of a block. There are three forms:
5804 The iteration may be controlled by a single condition, a "for" clause, or a "range" clause.
5805 </p>
5806
5807 <pre class="ebnf">
5808 ForStmt = "for" [ Condition | ForClause | RangeClause ] Block .
5809 Condition = Expression .
5810 </pre>
5811
5812 <h4 id="For_condition">For statements with single condition</h4>
5813
5814 <p>
5815 In its simplest form, a "for" statement specifies the repeated execution of
5816 a block as long as a boolean condition evaluates to true.
5817 The condition is evaluated before each iteration.
5818 If the condition is absent, it is equivalent to the boolean value
5819 <code>true</code>.
5820 </p>
5821
5822 <pre>
5823 for a &lt; b {
5824         a *= 2
5825 }
5826 </pre>
5827
5828 <h4 id="For_clause">For statements with <code>for</code> clause</h4>
5829
5830 <p>
5831 A "for" statement with a ForClause is also controlled by its condition, but
5832 additionally it may specify an <i>init</i>
5833 and a <i>post</i> statement, such as an assignment,
5834 an increment or decrement statement. The init statement may be a
5835 <a href="#Short_variable_declarations">short variable declaration</a>, but the post statement must not.
5836 Variables declared by the init statement are re-used in each iteration.
5837 </p>
5838
5839 <pre class="ebnf">
5840 ForClause = [ InitStmt ] ";" [ Condition ] ";" [ PostStmt ] .
5841 InitStmt = SimpleStmt .
5842 PostStmt = SimpleStmt .
5843 </pre>
5844
5845 <pre>
5846 for i := 0; i &lt; 10; i++ {
5847         f(i)
5848 }
5849 </pre>
5850
5851 <p>
5852 If non-empty, the init statement is executed once before evaluating the
5853 condition for the first iteration;
5854 the post statement is executed after each execution of the block (and
5855 only if the block was executed).
5856 Any element of the ForClause may be empty but the
5857 <a href="#Semicolons">semicolons</a> are
5858 required unless there is only a condition.
5859 If the condition is absent, it is equivalent to the boolean value
5860 <code>true</code>.
5861 </p>
5862
5863 <pre>
5864 for cond { S() }    is the same as    for ; cond ; { S() }
5865 for      { S() }    is the same as    for true     { S() }
5866 </pre>
5867
5868 <h4 id="For_range">For statements with <code>range</code> clause</h4>
5869
5870 <p>
5871 A "for" statement with a "range" clause
5872 iterates through all entries of an array, slice, string or map,
5873 or values received on a channel. For each entry it assigns <i>iteration values</i>
5874 to corresponding <i>iteration variables</i> if present and then executes the block.
5875 </p>
5876
5877 <pre class="ebnf">
5878 RangeClause = [ ExpressionList "=" | IdentifierList ":=" ] "range" Expression .
5879 </pre>
5880
5881 <p>
5882 The expression on the right in the "range" clause is called the <i>range expression</i>,
5883 which may be an array, pointer to an array, slice, string, map, or channel permitting
5884 <a href="#Receive_operator">receive operations</a>.
5885 As with an assignment, if present the operands on the left must be
5886 <a href="#Address_operators">addressable</a> or map index expressions; they
5887 denote the iteration variables. If the range expression is a channel, at most
5888 one iteration variable is permitted, otherwise there may be up to two.
5889 If the last iteration variable is the <a href="#Blank_identifier">blank identifier</a>,
5890 the range clause is equivalent to the same clause without that identifier.
5891 </p>
5892
5893 <p>
5894 The range expression <code>x</code> is evaluated once before beginning the loop,
5895 with one exception: if at most one iteration variable is present and
5896 <code>len(x)</code> is <a href="#Length_and_capacity">constant</a>,
5897 the range expression is not evaluated.
5898 </p>
5899
5900 <p>
5901 Function calls on the left are evaluated once per iteration.
5902 For each iteration, iteration values are produced as follows
5903 if the respective iteration variables are present:
5904 </p>
5905
5906 <pre class="grammar">
5907 Range expression                          1st value          2nd value
5908
5909 array or slice  a  [n]E, *[n]E, or []E    index    i  int    a[i]       E
5910 string          s  string type            index    i  int    see below  rune
5911 map             m  map[K]V                key      k  K      m[k]       V
5912 channel         c  chan E, &lt;-chan E       element  e  E
5913 </pre>
5914
5915 <ol>
5916 <li>
5917 For an array, pointer to array, or slice value <code>a</code>, the index iteration
5918 values are produced in increasing order, starting at element index 0.
5919 If at most one iteration variable is present, the range loop produces
5920 iteration values from 0 up to <code>len(a)-1</code> and does not index into the array
5921 or slice itself. For a <code>nil</code> slice, the number of iterations is 0.
5922 </li>
5923
5924 <li>
5925 For a string value, the "range" clause iterates over the Unicode code points
5926 in the string starting at byte index 0.  On successive iterations, the index value will be the
5927 index of the first byte of successive UTF-8-encoded code points in the string,
5928 and the second value, of type <code>rune</code>, will be the value of
5929 the corresponding code point.  If the iteration encounters an invalid
5930 UTF-8 sequence, the second value will be <code>0xFFFD</code>,
5931 the Unicode replacement character, and the next iteration will advance
5932 a single byte in the string.
5933 </li>
5934
5935 <li>
5936 The iteration order over maps is not specified
5937 and is not guaranteed to be the same from one iteration to the next.
5938 If a map entry that has not yet been reached is removed during iteration,
5939 the corresponding iteration value will not be produced. If a map entry is
5940 created during iteration, that entry may be produced during the iteration or
5941 may be skipped. The choice may vary for each entry created and from one
5942 iteration to the next.
5943 If the map is <code>nil</code>, the number of iterations is 0.
5944 </li>
5945
5946 <li>
5947 For channels, the iteration values produced are the successive values sent on
5948 the channel until the channel is <a href="#Close">closed</a>. If the channel
5949 is <code>nil</code>, the range expression blocks forever.
5950 </li>
5951 </ol>
5952
5953 <p>
5954 The iteration values are assigned to the respective
5955 iteration variables as in an <a href="#Assignments">assignment statement</a>.
5956 </p>
5957
5958 <p>
5959 The iteration variables may be declared by the "range" clause using a form of
5960 <a href="#Short_variable_declarations">short variable declaration</a>
5961 (<code>:=</code>).
5962 In this case their types are set to the types of the respective iteration values
5963 and their <a href="#Declarations_and_scope">scope</a> is the block of the "for"
5964 statement; they are re-used in each iteration.
5965 If the iteration variables are declared outside the "for" statement,
5966 after execution their values will be those of the last iteration.
5967 </p>
5968
5969 <pre>
5970 var testdata *struct {
5971         a *[7]int
5972 }
5973 for i, _ := range testdata.a {
5974         // testdata.a is never evaluated; len(testdata.a) is constant
5975         // i ranges from 0 to 6
5976         f(i)
5977 }
5978
5979 var a [10]string
5980 for i, s := range a {
5981         // type of i is int
5982         // type of s is string
5983         // s == a[i]
5984         g(i, s)
5985 }
5986
5987 var key string
5988 var val interface{}  // element type of m is assignable to val
5989 m := map[string]int{"mon":0, "tue":1, "wed":2, "thu":3, "fri":4, "sat":5, "sun":6}
5990 for key, val = range m {
5991         h(key, val)
5992 }
5993 // key == last map key encountered in iteration
5994 // val == map[key]
5995
5996 var ch chan Work = producer()
5997 for w := range ch {
5998         doWork(w)
5999 }
6000
6001 // empty a channel
6002 for range ch {}
6003 </pre>
6004
6005
6006 <h3 id="Go_statements">Go statements</h3>
6007
6008 <p>
6009 A "go" statement starts the execution of a function call
6010 as an independent concurrent thread of control, or <i>goroutine</i>,
6011 within the same address space.
6012 </p>
6013
6014 <pre class="ebnf">
6015 GoStmt = "go" Expression .
6016 </pre>
6017
6018 <p>
6019 The expression must be a function or method call; it cannot be parenthesized.
6020 Calls of built-in functions are restricted as for
6021 <a href="#Expression_statements">expression statements</a>.
6022 </p>
6023
6024 <p>
6025 The function value and parameters are
6026 <a href="#Calls">evaluated as usual</a>
6027 in the calling goroutine, but
6028 unlike with a regular call, program execution does not wait
6029 for the invoked function to complete.
6030 Instead, the function begins executing independently
6031 in a new goroutine.
6032 When the function terminates, its goroutine also terminates.
6033 If the function has any return values, they are discarded when the
6034 function completes.
6035 </p>
6036
6037 <pre>
6038 go Server()
6039 go func(ch chan&lt;- bool) { for { sleep(10); ch &lt;- true }} (c)
6040 </pre>
6041
6042
6043 <h3 id="Select_statements">Select statements</h3>
6044
6045 <p>
6046 A "select" statement chooses which of a set of possible
6047 <a href="#Send_statements">send</a> or
6048 <a href="#Receive_operator">receive</a>
6049 operations will proceed.
6050 It looks similar to a
6051 <a href="#Switch_statements">"switch"</a> statement but with the
6052 cases all referring to communication operations.
6053 </p>
6054
6055 <pre class="ebnf">
6056 SelectStmt = "select" "{" { CommClause } "}" .
6057 CommClause = CommCase ":" StatementList .
6058 CommCase   = "case" ( SendStmt | RecvStmt ) | "default" .
6059 RecvStmt   = [ ExpressionList "=" | IdentifierList ":=" ] RecvExpr .
6060 RecvExpr   = Expression .
6061 </pre>
6062
6063 <p>
6064 A case with a RecvStmt may assign the result of a RecvExpr to one or
6065 two variables, which may be declared using a
6066 <a href="#Short_variable_declarations">short variable declaration</a>.
6067 The RecvExpr must be a (possibly parenthesized) receive operation.
6068 There can be at most one default case and it may appear anywhere
6069 in the list of cases.
6070 </p>
6071
6072 <p>
6073 Execution of a "select" statement proceeds in several steps:
6074 </p>
6075
6076 <ol>
6077 <li>
6078 For all the cases in the statement, the channel operands of receive operations
6079 and the channel and right-hand-side expressions of send statements are
6080 evaluated exactly once, in source order, upon entering the "select" statement.
6081 The result is a set of channels to receive from or send to,
6082 and the corresponding values to send.
6083 Any side effects in that evaluation will occur irrespective of which (if any)
6084 communication operation is selected to proceed.
6085 Expressions on the left-hand side of a RecvStmt with a short variable declaration
6086 or assignment are not yet evaluated.
6087 </li>
6088
6089 <li>
6090 If one or more of the communications can proceed,
6091 a single one that can proceed is chosen via a uniform pseudo-random selection.
6092 Otherwise, if there is a default case, that case is chosen.
6093 If there is no default case, the "select" statement blocks until
6094 at least one of the communications can proceed.
6095 </li>
6096
6097 <li>
6098 Unless the selected case is the default case, the respective communication
6099 operation is executed.
6100 </li>
6101
6102 <li>
6103 If the selected case is a RecvStmt with a short variable declaration or
6104 an assignment, the left-hand side expressions are evaluated and the
6105 received value (or values) are assigned.
6106 </li>
6107
6108 <li>
6109 The statement list of the selected case is executed.
6110 </li>
6111 </ol>
6112
6113 <p>
6114 Since communication on <code>nil</code> channels can never proceed,
6115 a select with only <code>nil</code> channels and no default case blocks forever.
6116 </p>
6117
6118 <pre>
6119 var a []int
6120 var c, c1, c2, c3, c4 chan int
6121 var i1, i2 int
6122 select {
6123 case i1 = &lt;-c1:
6124         print("received ", i1, " from c1\n")
6125 case c2 &lt;- i2:
6126         print("sent ", i2, " to c2\n")
6127 case i3, ok := (&lt;-c3):  // same as: i3, ok := &lt;-c3
6128         if ok {
6129                 print("received ", i3, " from c3\n")
6130         } else {
6131                 print("c3 is closed\n")
6132         }
6133 case a[f()] = &lt;-c4:
6134         // same as:
6135         // case t := &lt;-c4
6136         //      a[f()] = t
6137 default:
6138         print("no communication\n")
6139 }
6140
6141 for {  // send random sequence of bits to c
6142         select {
6143         case c &lt;- 0:  // note: no statement, no fallthrough, no folding of cases
6144         case c &lt;- 1:
6145         }
6146 }
6147
6148 select {}  // block forever
6149 </pre>
6150
6151
6152 <h3 id="Return_statements">Return statements</h3>
6153
6154 <p>
6155 A "return" statement in a function <code>F</code> terminates the execution
6156 of <code>F</code>, and optionally provides one or more result values.
6157 Any functions <a href="#Defer_statements">deferred</a> by <code>F</code>
6158 are executed before <code>F</code> returns to its caller.
6159 </p>
6160
6161 <pre class="ebnf">
6162 ReturnStmt = "return" [ ExpressionList ] .
6163 </pre>
6164
6165 <p>
6166 In a function without a result type, a "return" statement must not
6167 specify any result values.
6168 </p>
6169 <pre>
6170 func noResult() {
6171         return
6172 }
6173 </pre>
6174
6175 <p>
6176 There are three ways to return values from a function with a result
6177 type:
6178 </p>
6179
6180 <ol>
6181         <li>The return value or values may be explicitly listed
6182                 in the "return" statement. Each expression must be single-valued
6183                 and <a href="#Assignability">assignable</a>
6184                 to the corresponding element of the function's result type.
6185 <pre>
6186 func simpleF() int {
6187         return 2
6188 }
6189
6190 func complexF1() (re float64, im float64) {
6191         return -7.0, -4.0
6192 }
6193 </pre>
6194         </li>
6195         <li>The expression list in the "return" statement may be a single
6196                 call to a multi-valued function. The effect is as if each value
6197                 returned from that function were assigned to a temporary
6198                 variable with the type of the respective value, followed by a
6199                 "return" statement listing these variables, at which point the
6200                 rules of the previous case apply.
6201 <pre>
6202 func complexF2() (re float64, im float64) {
6203         return complexF1()
6204 }
6205 </pre>
6206         </li>
6207         <li>The expression list may be empty if the function's result
6208                 type specifies names for its <a href="#Function_types">result parameters</a>.
6209                 The result parameters act as ordinary local variables
6210                 and the function may assign values to them as necessary.
6211                 The "return" statement returns the values of these variables.
6212 <pre>
6213 func complexF3() (re float64, im float64) {
6214         re = 7.0
6215         im = 4.0
6216         return
6217 }
6218
6219 func (devnull) Write(p []byte) (n int, _ error) {
6220         n = len(p)
6221         return
6222 }
6223 </pre>
6224         </li>
6225 </ol>
6226
6227 <p>
6228 Regardless of how they are declared, all the result values are initialized to
6229 the <a href="#The_zero_value">zero values</a> for their type upon entry to the
6230 function. A "return" statement that specifies results sets the result parameters before
6231 any deferred functions are executed.
6232 </p>
6233
6234 <p>
6235 Implementation restriction: A compiler may disallow an empty expression list
6236 in a "return" statement if a different entity (constant, type, or variable)
6237 with the same name as a result parameter is in
6238 <a href="#Declarations_and_scope">scope</a> at the place of the return.
6239 </p>
6240
6241 <pre>
6242 func f(n int) (res int, err error) {
6243         if _, err := f(n-1); err != nil {
6244                 return  // invalid return statement: err is shadowed
6245         }
6246         return
6247 }
6248 </pre>
6249
6250 <h3 id="Break_statements">Break statements</h3>
6251
6252 <p>
6253 A "break" statement terminates execution of the innermost
6254 <a href="#For_statements">"for"</a>,
6255 <a href="#Switch_statements">"switch"</a>, or
6256 <a href="#Select_statements">"select"</a> statement
6257 within the same function.
6258 </p>
6259
6260 <pre class="ebnf">
6261 BreakStmt = "break" [ Label ] .
6262 </pre>
6263
6264 <p>
6265 If there is a label, it must be that of an enclosing
6266 "for", "switch", or "select" statement,
6267 and that is the one whose execution terminates.
6268 </p>
6269
6270 <pre>
6271 OuterLoop:
6272         for i = 0; i &lt; n; i++ {
6273                 for j = 0; j &lt; m; j++ {
6274                         switch a[i][j] {
6275                         case nil:
6276                                 state = Error
6277                                 break OuterLoop
6278                         case item:
6279                                 state = Found
6280                                 break OuterLoop
6281                         }
6282                 }
6283         }
6284 </pre>
6285
6286 <h3 id="Continue_statements">Continue statements</h3>
6287
6288 <p>
6289 A "continue" statement begins the next iteration of the
6290 innermost <a href="#For_statements">"for" loop</a> at its post statement.
6291 The "for" loop must be within the same function.
6292 </p>
6293
6294 <pre class="ebnf">
6295 ContinueStmt = "continue" [ Label ] .
6296 </pre>
6297
6298 <p>
6299 If there is a label, it must be that of an enclosing
6300 "for" statement, and that is the one whose execution
6301 advances.
6302 </p>
6303
6304 <pre>
6305 RowLoop:
6306         for y, row := range rows {
6307                 for x, data := range row {
6308                         if data == endOfRow {
6309                                 continue RowLoop
6310                         }
6311                         row[x] = data + bias(x, y)
6312                 }
6313         }
6314 </pre>
6315
6316 <h3 id="Goto_statements">Goto statements</h3>
6317
6318 <p>
6319 A "goto" statement transfers control to the statement with the corresponding label
6320 within the same function.
6321 </p>
6322
6323 <pre class="ebnf">
6324 GotoStmt = "goto" Label .
6325 </pre>
6326
6327 <pre>
6328 goto Error
6329 </pre>
6330
6331 <p>
6332 Executing the "goto" statement must not cause any variables to come into
6333 <a href="#Declarations_and_scope">scope</a> that were not already in scope at the point of the goto.
6334 For instance, this example:
6335 </p>
6336
6337 <pre>
6338         goto L  // BAD
6339         v := 3
6340 L:
6341 </pre>
6342
6343 <p>
6344 is erroneous because the jump to label <code>L</code> skips
6345 the creation of <code>v</code>.
6346 </p>
6347
6348 <p>
6349 A "goto" statement outside a <a href="#Blocks">block</a> cannot jump to a label inside that block.
6350 For instance, this example:
6351 </p>
6352
6353 <pre>
6354 if n%2 == 1 {
6355         goto L1
6356 }
6357 for n &gt; 0 {
6358         f()
6359         n--
6360 L1:
6361         f()
6362         n--
6363 }
6364 </pre>
6365
6366 <p>
6367 is erroneous because the label <code>L1</code> is inside
6368 the "for" statement's block but the <code>goto</code> is not.
6369 </p>
6370
6371 <h3 id="Fallthrough_statements">Fallthrough statements</h3>
6372
6373 <p>
6374 A "fallthrough" statement transfers control to the first statement of the
6375 next case clause in an <a href="#Expression_switches">expression "switch" statement</a>.
6376 It may be used only as the final non-empty statement in such a clause.
6377 </p>
6378
6379 <pre class="ebnf">
6380 FallthroughStmt = "fallthrough" .
6381 </pre>
6382
6383
6384 <h3 id="Defer_statements">Defer statements</h3>
6385
6386 <p>
6387 A "defer" statement invokes a function whose execution is deferred
6388 to the moment the surrounding function returns, either because the
6389 surrounding function executed a <a href="#Return_statements">return statement</a>,
6390 reached the end of its <a href="#Function_declarations">function body</a>,
6391 or because the corresponding goroutine is <a href="#Handling_panics">panicking</a>.
6392 </p>
6393
6394 <pre class="ebnf">
6395 DeferStmt = "defer" Expression .
6396 </pre>
6397
6398 <p>
6399 The expression must be a function or method call; it cannot be parenthesized.
6400 Calls of built-in functions are restricted as for
6401 <a href="#Expression_statements">expression statements</a>.
6402 </p>
6403
6404 <p>
6405 Each time a "defer" statement
6406 executes, the function value and parameters to the call are
6407 <a href="#Calls">evaluated as usual</a>
6408 and saved anew but the actual function is not invoked.
6409 Instead, deferred functions are invoked immediately before
6410 the surrounding function returns, in the reverse order
6411 they were deferred. That is, if the surrounding function
6412 returns through an explicit <a href="#Return_statements">return statement</a>,
6413 deferred functions are executed <i>after</i> any result parameters are set
6414 by that return statement but <i>before</i> the function returns to its caller.
6415 If a deferred function value evaluates
6416 to <code>nil</code>, execution <a href="#Handling_panics">panics</a>
6417 when the function is invoked, not when the "defer" statement is executed.
6418 </p>
6419
6420 <p>
6421 For instance, if the deferred function is
6422 a <a href="#Function_literals">function literal</a> and the surrounding
6423 function has <a href="#Function_types">named result parameters</a> that
6424 are in scope within the literal, the deferred function may access and modify
6425 the result parameters before they are returned.
6426 If the deferred function has any return values, they are discarded when
6427 the function completes.
6428 (See also the section on <a href="#Handling_panics">handling panics</a>.)
6429 </p>
6430
6431 <pre>
6432 lock(l)
6433 defer unlock(l)  // unlocking happens before surrounding function returns
6434
6435 // prints 3 2 1 0 before surrounding function returns
6436 for i := 0; i &lt;= 3; i++ {
6437         defer fmt.Print(i)
6438 }
6439
6440 // f returns 42
6441 func f() (result int) {
6442         defer func() {
6443                 // result is accessed after it was set to 6 by the return statement
6444                 result *= 7
6445         }()
6446         return 6
6447 }
6448 </pre>
6449
6450 <h2 id="Built-in_functions">Built-in functions</h2>
6451
6452 <p>
6453 Built-in functions are
6454 <a href="#Predeclared_identifiers">predeclared</a>.
6455 They are called like any other function but some of them
6456 accept a type instead of an expression as the first argument.
6457 </p>
6458
6459 <p>
6460 The built-in functions do not have standard Go types,
6461 so they can only appear in <a href="#Calls">call expressions</a>;
6462 they cannot be used as function values.
6463 </p>
6464
6465 <h3 id="Close">Close</h3>
6466
6467 <p>
6468 For a channel <code>c</code>, the built-in function <code>close(c)</code>
6469 records that no more values will be sent on the channel.
6470 It is an error if <code>c</code> is a receive-only channel.
6471 Sending to or closing a closed channel causes a <a href="#Run_time_panics">run-time panic</a>.
6472 Closing the nil channel also causes a <a href="#Run_time_panics">run-time panic</a>.
6473 After calling <code>close</code>, and after any previously
6474 sent values have been received, receive operations will return
6475 the zero value for the channel's type without blocking.
6476 The multi-valued <a href="#Receive_operator">receive operation</a>
6477 returns a received value along with an indication of whether the channel is closed.
6478 </p>
6479
6480
6481 <h3 id="Length_and_capacity">Length and capacity</h3>
6482
6483 <p>
6484 The built-in functions <code>len</code> and <code>cap</code> take arguments
6485 of various types and return a result of type <code>int</code>.
6486 The implementation guarantees that the result always fits into an <code>int</code>.
6487 </p>
6488
6489 <pre class="grammar">
6490 Call      Argument type    Result
6491
6492 len(s)    string type      string length in bytes
6493           [n]T, *[n]T      array length (== n)
6494           []T              slice length
6495           map[K]T          map length (number of defined keys)
6496           chan T           number of elements queued in channel buffer
6497           type parameter   see below
6498
6499 cap(s)    [n]T, *[n]T      array length (== n)
6500           []T              slice capacity
6501           chan T           channel buffer capacity
6502           type parameter   see below
6503 </pre>
6504
6505 <p>
6506 If the argument type is a <a href="#Type_parameters">type parameter</a> <code>P</code>,
6507 <code>P</code> must have <a href="#Structure of interfaces">specific types</a>, and
6508 the call <code>len(e)</code> (or <code>cap(e)</code> respectively) must be valid for
6509 each specific type of <code>P</code>.
6510 The result is the length (or capacity, respectively) of the argument whose type
6511 corresponds to the type argument with which <code>P</code> was
6512 <a href="#Instantiations">instantiated</a>.
6513 </p>
6514
6515 <p>
6516 The capacity of a slice is the number of elements for which there is
6517 space allocated in the underlying array.
6518 At any time the following relationship holds:
6519 </p>
6520
6521 <pre>
6522 0 &lt;= len(s) &lt;= cap(s)
6523 </pre>
6524
6525 <p>
6526 The length of a <code>nil</code> slice, map or channel is 0.
6527 The capacity of a <code>nil</code> slice or channel is 0.
6528 </p>
6529
6530 <p>
6531 The expression <code>len(s)</code> is <a href="#Constants">constant</a> if
6532 <code>s</code> is a string constant. The expressions <code>len(s)</code> and
6533 <code>cap(s)</code> are constants if the type of <code>s</code> is an array
6534 or pointer to an array and the expression <code>s</code> does not contain
6535 <a href="#Receive_operator">channel receives</a> or (non-constant)
6536 <a href="#Calls">function calls</a>; in this case <code>s</code> is not evaluated.
6537 Otherwise, invocations of <code>len</code> and <code>cap</code> are not
6538 constant and <code>s</code> is evaluated.
6539 </p>
6540
6541 <pre>
6542 const (
6543         c1 = imag(2i)                    // imag(2i) = 2.0 is a constant
6544         c2 = len([10]float64{2})         // [10]float64{2} contains no function calls
6545         c3 = len([10]float64{c1})        // [10]float64{c1} contains no function calls
6546         c4 = len([10]float64{imag(2i)})  // imag(2i) is a constant and no function call is issued
6547         c5 = len([10]float64{imag(z)})   // invalid: imag(z) is a (non-constant) function call
6548 )
6549 var z complex128
6550 </pre>
6551
6552 <h3 id="Allocation">Allocation</h3>
6553
6554 <p>
6555 The built-in function <code>new</code> takes a type <code>T</code>,
6556 allocates storage for a <a href="#Variables">variable</a> of that type
6557 at run time, and returns a value of type <code>*T</code>
6558 <a href="#Pointer_types">pointing</a> to it.
6559 The variable is initialized as described in the section on
6560 <a href="#The_zero_value">initial values</a>.
6561 </p>
6562
6563 <pre class="grammar">
6564 new(T)
6565 </pre>
6566
6567 <p>
6568 For instance
6569 </p>
6570
6571 <pre>
6572 type S struct { a int; b float64 }
6573 new(S)
6574 </pre>
6575
6576 <p>
6577 allocates storage for a variable of type <code>S</code>,
6578 initializes it (<code>a=0</code>, <code>b=0.0</code>),
6579 and returns a value of type <code>*S</code> containing the address
6580 of the location.
6581 </p>
6582
6583 <h3 id="Making_slices_maps_and_channels">Making slices, maps and channels</h3>
6584
6585 <p>
6586 The built-in function <code>make</code> takes a type <code>T</code>,
6587 which must be a slice, map or channel type,
6588 optionally followed by a type-specific list of expressions.
6589 It returns a value of type <code>T</code> (not <code>*T</code>).
6590 The memory is initialized as described in the section on
6591 <a href="#The_zero_value">initial values</a>.
6592 </p>
6593
6594 <pre class="grammar">
6595 Call             Type T     Result
6596
6597 make(T, n)       slice      slice of type T with length n and capacity n
6598 make(T, n, m)    slice      slice of type T with length n and capacity m
6599
6600 make(T)          map        map of type T
6601 make(T, n)       map        map of type T with initial space for approximately n elements
6602
6603 make(T)          channel    unbuffered channel of type T
6604 make(T, n)       channel    buffered channel of type T, buffer size n
6605 </pre>
6606
6607
6608 <p>
6609 Each of the size arguments <code>n</code> and <code>m</code> must be of integer type
6610 or an untyped <a href="#Constants">constant</a>.
6611 A constant size argument must be non-negative and <a href="#Representability">representable</a>
6612 by a value of type <code>int</code>; if it is an untyped constant it is given type <code>int</code>.
6613 If both <code>n</code> and <code>m</code> are provided and are constant, then
6614 <code>n</code> must be no larger than <code>m</code>.
6615 If <code>n</code> is negative or larger than <code>m</code> at run time,
6616 a <a href="#Run_time_panics">run-time panic</a> occurs.
6617 </p>
6618
6619 <pre>
6620 s := make([]int, 10, 100)       // slice with len(s) == 10, cap(s) == 100
6621 s := make([]int, 1e3)           // slice with len(s) == cap(s) == 1000
6622 s := make([]int, 1&lt;&lt;63)         // illegal: len(s) is not representable by a value of type int
6623 s := make([]int, 10, 0)         // illegal: len(s) > cap(s)
6624 c := make(chan int, 10)         // channel with a buffer size of 10
6625 m := make(map[string]int, 100)  // map with initial space for approximately 100 elements
6626 </pre>
6627
6628 <p>
6629 Calling <code>make</code> with a map type and size hint <code>n</code> will
6630 create a map with initial space to hold <code>n</code> map elements.
6631 The precise behavior is implementation-dependent.
6632 </p>
6633
6634
6635 <h3 id="Appending_and_copying_slices">Appending to and copying slices</h3>
6636
6637 <p>
6638 The built-in functions <code>append</code> and <code>copy</code> assist in
6639 common slice operations.
6640 For both functions, the result is independent of whether the memory referenced
6641 by the arguments overlaps.
6642 </p>
6643
6644 <p>
6645 The <a href="#Function_types">variadic</a> function <code>append</code>
6646 appends zero or more values <code>x</code>
6647 to <code>s</code> of type <code>S</code>, which must be a slice type, and
6648 returns the resulting slice, also of type <code>S</code>.
6649 The values <code>x</code> are passed to a parameter of type <code>...T</code>
6650 where <code>T</code> is the <a href="#Slice_types">element type</a> of
6651 <code>S</code> and the respective
6652 <a href="#Passing_arguments_to_..._parameters">parameter passing rules</a> apply.
6653 As a special case, <code>append</code> also accepts a first argument
6654 assignable to type <code>[]byte</code> with a second argument of
6655 string type followed by <code>...</code>. This form appends the
6656 bytes of the string.
6657 </p>
6658
6659 <pre class="grammar">
6660 append(s S, x ...T) S  // T is the element type of S
6661 </pre>
6662
6663 <p>
6664 If the capacity of <code>s</code> is not large enough to fit the additional
6665 values, <code>append</code> allocates a new, sufficiently large underlying
6666 array that fits both the existing slice elements and the additional values.
6667 Otherwise, <code>append</code> re-uses the underlying array.
6668 </p>
6669
6670 <pre>
6671 s0 := []int{0, 0}
6672 s1 := append(s0, 2)                // append a single element     s1 == []int{0, 0, 2}
6673 s2 := append(s1, 3, 5, 7)          // append multiple elements    s2 == []int{0, 0, 2, 3, 5, 7}
6674 s3 := append(s2, s0...)            // append a slice              s3 == []int{0, 0, 2, 3, 5, 7, 0, 0}
6675 s4 := append(s3[3:6], s3[2:]...)   // append overlapping slice    s4 == []int{3, 5, 7, 2, 3, 5, 7, 0, 0}
6676
6677 var t []interface{}
6678 t = append(t, 42, 3.1415, "foo")   //                             t == []interface{}{42, 3.1415, "foo"}
6679
6680 var b []byte
6681 b = append(b, "bar"...)            // append string contents      b == []byte{'b', 'a', 'r' }
6682 </pre>
6683
6684 <p>
6685 The function <code>copy</code> copies slice elements from
6686 a source <code>src</code> to a destination <code>dst</code> and returns the
6687 number of elements copied.
6688 Both arguments must have <a href="#Type_identity">identical</a> element type <code>T</code> and must be
6689 <a href="#Assignability">assignable</a> to a slice of type <code>[]T</code>.
6690 The number of elements copied is the minimum of
6691 <code>len(src)</code> and <code>len(dst)</code>.
6692 As a special case, <code>copy</code> also accepts a destination argument assignable
6693 to type <code>[]byte</code> with a source argument of a string type.
6694 This form copies the bytes from the string into the byte slice.
6695 </p>
6696
6697 <pre class="grammar">
6698 copy(dst, src []T) int
6699 copy(dst []byte, src string) int
6700 </pre>
6701
6702 <p>
6703 Examples:
6704 </p>
6705
6706 <pre>
6707 var a = [...]int{0, 1, 2, 3, 4, 5, 6, 7}
6708 var s = make([]int, 6)
6709 var b = make([]byte, 5)
6710 n1 := copy(s, a[0:])            // n1 == 6, s == []int{0, 1, 2, 3, 4, 5}
6711 n2 := copy(s, s[2:])            // n2 == 4, s == []int{2, 3, 4, 5, 4, 5}
6712 n3 := copy(b, "Hello, World!")  // n3 == 5, b == []byte("Hello")
6713 </pre>
6714
6715
6716 <h3 id="Deletion_of_map_elements">Deletion of map elements</h3>
6717
6718 <p>
6719 The built-in function <code>delete</code> removes the element with key
6720 <code>k</code> from a <a href="#Map_types">map</a> <code>m</code>. The
6721 type of <code>k</code> must be <a href="#Assignability">assignable</a>
6722 to the key type of <code>m</code>.
6723 </p>
6724
6725 <pre class="grammar">
6726 delete(m, k)  // remove element m[k] from map m
6727 </pre>
6728
6729 <p>
6730 If the map <code>m</code> is <code>nil</code> or the element <code>m[k]</code>
6731 does not exist, <code>delete</code> is a no-op.
6732 </p>
6733
6734
6735 <h3 id="Complex_numbers">Manipulating complex numbers</h3>
6736
6737 <p>
6738 Three functions assemble and disassemble complex numbers.
6739 The built-in function <code>complex</code> constructs a complex
6740 value from a floating-point real and imaginary part, while
6741 <code>real</code> and <code>imag</code>
6742 extract the real and imaginary parts of a complex value.
6743 </p>
6744
6745 <pre class="grammar">
6746 complex(realPart, imaginaryPart floatT) complexT
6747 real(complexT) floatT
6748 imag(complexT) floatT
6749 </pre>
6750
6751 <p>
6752 The type of the arguments and return value correspond.
6753 For <code>complex</code>, the two arguments must be of the same
6754 floating-point type and the return type is the complex type
6755 with the corresponding floating-point constituents:
6756 <code>complex64</code> for <code>float32</code> arguments, and
6757 <code>complex128</code> for <code>float64</code> arguments.
6758 If one of the arguments evaluates to an untyped constant, it is first implicitly
6759 <a href="#Conversions">converted</a> to the type of the other argument.
6760 If both arguments evaluate to untyped constants, they must be non-complex
6761 numbers or their imaginary parts must be zero, and the return value of
6762 the function is an untyped complex constant.
6763 </p>
6764
6765 <p>
6766 For <code>real</code> and <code>imag</code>, the argument must be
6767 of complex type, and the return type is the corresponding floating-point
6768 type: <code>float32</code> for a <code>complex64</code> argument, and
6769 <code>float64</code> for a <code>complex128</code> argument.
6770 If the argument evaluates to an untyped constant, it must be a number,
6771 and the return value of the function is an untyped floating-point constant.
6772 </p>
6773
6774 <p>
6775 The <code>real</code> and <code>imag</code> functions together form the inverse of
6776 <code>complex</code>, so for a value <code>z</code> of a complex type <code>Z</code>,
6777 <code>z&nbsp;==&nbsp;Z(complex(real(z),&nbsp;imag(z)))</code>.
6778 </p>
6779
6780 <p>
6781 If the operands of these functions are all constants, the return
6782 value is a constant.
6783 </p>
6784
6785 <pre>
6786 var a = complex(2, -2)             // complex128
6787 const b = complex(1.0, -1.4)       // untyped complex constant 1 - 1.4i
6788 x := float32(math.Cos(math.Pi/2))  // float32
6789 var c64 = complex(5, -x)           // complex64
6790 var s int = complex(1, 0)          // untyped complex constant 1 + 0i can be converted to int
6791 _ = complex(1, 2&lt;&lt;s)               // illegal: 2 assumes floating-point type, cannot shift
6792 var rl = real(c64)                 // float32
6793 var im = imag(a)                   // float64
6794 const c = imag(b)                  // untyped constant -1.4
6795 _ = imag(3 &lt;&lt; s)                   // illegal: 3 assumes complex type, cannot shift
6796 </pre>
6797
6798 <h3 id="Handling_panics">Handling panics</h3>
6799
6800 <p> Two built-in functions, <code>panic</code> and <code>recover</code>,
6801 assist in reporting and handling <a href="#Run_time_panics">run-time panics</a>
6802 and program-defined error conditions.
6803 </p>
6804
6805 <pre class="grammar">
6806 func panic(interface{})
6807 func recover() interface{}
6808 </pre>
6809
6810 <p>
6811 While executing a function <code>F</code>,
6812 an explicit call to <code>panic</code> or a <a href="#Run_time_panics">run-time panic</a>
6813 terminates the execution of <code>F</code>.
6814 Any functions <a href="#Defer_statements">deferred</a> by <code>F</code>
6815 are then executed as usual.
6816 Next, any deferred functions run by <code>F's</code> caller are run,
6817 and so on up to any deferred by the top-level function in the executing goroutine.
6818 At that point, the program is terminated and the error
6819 condition is reported, including the value of the argument to <code>panic</code>.
6820 This termination sequence is called <i>panicking</i>.
6821 </p>
6822
6823 <pre>
6824 panic(42)
6825 panic("unreachable")
6826 panic(Error("cannot parse"))
6827 </pre>
6828
6829 <p>
6830 The <code>recover</code> function allows a program to manage behavior
6831 of a panicking goroutine.
6832 Suppose a function <code>G</code> defers a function <code>D</code> that calls
6833 <code>recover</code> and a panic occurs in a function on the same goroutine in which <code>G</code>
6834 is executing.
6835 When the running of deferred functions reaches <code>D</code>,
6836 the return value of <code>D</code>'s call to <code>recover</code> will be the value passed to the call of <code>panic</code>.
6837 If <code>D</code> returns normally, without starting a new
6838 <code>panic</code>, the panicking sequence stops. In that case,
6839 the state of functions called between <code>G</code> and the call to <code>panic</code>
6840 is discarded, and normal execution resumes.
6841 Any functions deferred by <code>G</code> before <code>D</code> are then run and <code>G</code>'s
6842 execution terminates by returning to its caller.
6843 </p>
6844
6845 <p>
6846 The return value of <code>recover</code> is <code>nil</code> if any of the following conditions holds:
6847 </p>
6848 <ul>
6849 <li>
6850 <code>panic</code>'s argument was <code>nil</code>;
6851 </li>
6852 <li>
6853 the goroutine is not panicking;
6854 </li>
6855 <li>
6856 <code>recover</code> was not called directly by a deferred function.
6857 </li>
6858 </ul>
6859
6860 <p>
6861 The <code>protect</code> function in the example below invokes
6862 the function argument <code>g</code> and protects callers from
6863 run-time panics raised by <code>g</code>.
6864 </p>
6865
6866 <pre>
6867 func protect(g func()) {
6868         defer func() {
6869                 log.Println("done")  // Println executes normally even if there is a panic
6870                 if x := recover(); x != nil {
6871                         log.Printf("run time panic: %v", x)
6872                 }
6873         }()
6874         log.Println("start")
6875         g()
6876 }
6877 </pre>
6878
6879
6880 <h3 id="Bootstrapping">Bootstrapping</h3>
6881
6882 <p>
6883 Current implementations provide several built-in functions useful during
6884 bootstrapping. These functions are documented for completeness but are not
6885 guaranteed to stay in the language. They do not return a result.
6886 </p>
6887
6888 <pre class="grammar">
6889 Function   Behavior
6890
6891 print      prints all arguments; formatting of arguments is implementation-specific
6892 println    like print but prints spaces between arguments and a newline at the end
6893 </pre>
6894
6895 <p>
6896 Implementation restriction: <code>print</code> and <code>println</code> need not
6897 accept arbitrary argument types, but printing of boolean, numeric, and string
6898 <a href="#Types">types</a> must be supported.
6899 </p>
6900
6901 <h2 id="Packages">Packages</h2>
6902
6903 <p>
6904 Go programs are constructed by linking together <i>packages</i>.
6905 A package in turn is constructed from one or more source files
6906 that together declare constants, types, variables and functions
6907 belonging to the package and which are accessible in all files
6908 of the same package. Those elements may be
6909 <a href="#Exported_identifiers">exported</a> and used in another package.
6910 </p>
6911
6912 <h3 id="Source_file_organization">Source file organization</h3>
6913
6914 <p>
6915 Each source file consists of a package clause defining the package
6916 to which it belongs, followed by a possibly empty set of import
6917 declarations that declare packages whose contents it wishes to use,
6918 followed by a possibly empty set of declarations of functions,
6919 types, variables, and constants.
6920 </p>
6921
6922 <pre class="ebnf">
6923 SourceFile       = PackageClause ";" { ImportDecl ";" } { TopLevelDecl ";" } .
6924 </pre>
6925
6926 <h3 id="Package_clause">Package clause</h3>
6927
6928 <p>
6929 A package clause begins each source file and defines the package
6930 to which the file belongs.
6931 </p>
6932
6933 <pre class="ebnf">
6934 PackageClause  = "package" PackageName .
6935 PackageName    = identifier .
6936 </pre>
6937
6938 <p>
6939 The PackageName must not be the <a href="#Blank_identifier">blank identifier</a>.
6940 </p>
6941
6942 <pre>
6943 package math
6944 </pre>
6945
6946 <p>
6947 A set of files sharing the same PackageName form the implementation of a package.
6948 An implementation may require that all source files for a package inhabit the same directory.
6949 </p>
6950
6951 <h3 id="Import_declarations">Import declarations</h3>
6952
6953 <p>
6954 An import declaration states that the source file containing the declaration
6955 depends on functionality of the <i>imported</i> package
6956 (<a href="#Program_initialization_and_execution">§Program initialization and execution</a>)
6957 and enables access to <a href="#Exported_identifiers">exported</a> identifiers
6958 of that package.
6959 The import names an identifier (PackageName) to be used for access and an ImportPath
6960 that specifies the package to be imported.
6961 </p>
6962
6963 <pre class="ebnf">
6964 ImportDecl       = "import" ( ImportSpec | "(" { ImportSpec ";" } ")" ) .
6965 ImportSpec       = [ "." | PackageName ] ImportPath .
6966 ImportPath       = string_lit .
6967 </pre>
6968
6969 <p>
6970 The PackageName is used in <a href="#Qualified_identifiers">qualified identifiers</a>
6971 to access exported identifiers of the package within the importing source file.
6972 It is declared in the <a href="#Blocks">file block</a>.
6973 If the PackageName is omitted, it defaults to the identifier specified in the
6974 <a href="#Package_clause">package clause</a> of the imported package.
6975 If an explicit period (<code>.</code>) appears instead of a name, all the
6976 package's exported identifiers declared in that package's
6977 <a href="#Blocks">package block</a> will be declared in the importing source
6978 file's file block and must be accessed without a qualifier.
6979 </p>
6980
6981 <p>
6982 The interpretation of the ImportPath is implementation-dependent but
6983 it is typically a substring of the full file name of the compiled
6984 package and may be relative to a repository of installed packages.
6985 </p>
6986
6987 <p>
6988 Implementation restriction: A compiler may restrict ImportPaths to
6989 non-empty strings using only characters belonging to
6990 <a href="https://www.unicode.org/versions/Unicode6.3.0/">Unicode's</a>
6991 L, M, N, P, and S general categories (the Graphic characters without
6992 spaces) and may also exclude the characters
6993 <code>!"#$%&amp;'()*,:;&lt;=&gt;?[\]^`{|}</code>
6994 and the Unicode replacement character U+FFFD.
6995 </p>
6996
6997 <p>
6998 Assume we have compiled a package containing the package clause
6999 <code>package math</code>, which exports function <code>Sin</code>, and
7000 installed the compiled package in the file identified by
7001 <code>"lib/math"</code>.
7002 This table illustrates how <code>Sin</code> is accessed in files
7003 that import the package after the
7004 various types of import declaration.
7005 </p>
7006
7007 <pre class="grammar">
7008 Import declaration          Local name of Sin
7009
7010 import   "lib/math"         math.Sin
7011 import m "lib/math"         m.Sin
7012 import . "lib/math"         Sin
7013 </pre>
7014
7015 <p>
7016 An import declaration declares a dependency relation between
7017 the importing and imported package.
7018 It is illegal for a package to import itself, directly or indirectly,
7019 or to directly import a package without
7020 referring to any of its exported identifiers. To import a package solely for
7021 its side-effects (initialization), use the <a href="#Blank_identifier">blank</a>
7022 identifier as explicit package name:
7023 </p>
7024
7025 <pre>
7026 import _ "lib/math"
7027 </pre>
7028
7029
7030 <h3 id="An_example_package">An example package</h3>
7031
7032 <p>
7033 Here is a complete Go package that implements a concurrent prime sieve.
7034 </p>
7035
7036 <pre>
7037 package main
7038
7039 import "fmt"
7040
7041 // Send the sequence 2, 3, 4, … to channel 'ch'.
7042 func generate(ch chan&lt;- int) {
7043         for i := 2; ; i++ {
7044                 ch &lt;- i  // Send 'i' to channel 'ch'.
7045         }
7046 }
7047
7048 // Copy the values from channel 'src' to channel 'dst',
7049 // removing those divisible by 'prime'.
7050 func filter(src &lt;-chan int, dst chan&lt;- int, prime int) {
7051         for i := range src {  // Loop over values received from 'src'.
7052                 if i%prime != 0 {
7053                         dst &lt;- i  // Send 'i' to channel 'dst'.
7054                 }
7055         }
7056 }
7057
7058 // The prime sieve: Daisy-chain filter processes together.
7059 func sieve() {
7060         ch := make(chan int)  // Create a new channel.
7061         go generate(ch)       // Start generate() as a subprocess.
7062         for {
7063                 prime := &lt;-ch
7064                 fmt.Print(prime, "\n")
7065                 ch1 := make(chan int)
7066                 go filter(ch, ch1, prime)
7067                 ch = ch1
7068         }
7069 }
7070
7071 func main() {
7072         sieve()
7073 }
7074 </pre>
7075
7076 <h2 id="Program_initialization_and_execution">Program initialization and execution</h2>
7077
7078 <h3 id="The_zero_value">The zero value</h3>
7079 <p>
7080 When storage is allocated for a <a href="#Variables">variable</a>,
7081 either through a declaration or a call of <code>new</code>, or when
7082 a new value is created, either through a composite literal or a call
7083 of <code>make</code>,
7084 and no explicit initialization is provided, the variable or value is
7085 given a default value.  Each element of such a variable or value is
7086 set to the <i>zero value</i> for its type: <code>false</code> for booleans,
7087 <code>0</code> for numeric types, <code>""</code>
7088 for strings, and <code>nil</code> for pointers, functions, interfaces, slices, channels, and maps.
7089 This initialization is done recursively, so for instance each element of an
7090 array of structs will have its fields zeroed if no value is specified.
7091 </p>
7092 <p>
7093 These two simple declarations are equivalent:
7094 </p>
7095
7096 <pre>
7097 var i int
7098 var i int = 0
7099 </pre>
7100
7101 <p>
7102 After
7103 </p>
7104
7105 <pre>
7106 type T struct { i int; f float64; next *T }
7107 t := new(T)
7108 </pre>
7109
7110 <p>
7111 the following holds:
7112 </p>
7113
7114 <pre>
7115 t.i == 0
7116 t.f == 0.0
7117 t.next == nil
7118 </pre>
7119
7120 <p>
7121 The same would also be true after
7122 </p>
7123
7124 <pre>
7125 var t T
7126 </pre>
7127
7128 <h3 id="Package_initialization">Package initialization</h3>
7129
7130 <p>
7131 Within a package, package-level variable initialization proceeds stepwise,
7132 with each step selecting the variable earliest in <i>declaration order</i>
7133 which has no dependencies on uninitialized variables.
7134 </p>
7135
7136 <p>
7137 More precisely, a package-level variable is considered <i>ready for
7138 initialization</i> if it is not yet initialized and either has
7139 no <a href="#Variable_declarations">initialization expression</a> or
7140 its initialization expression has no <i>dependencies</i> on uninitialized variables.
7141 Initialization proceeds by repeatedly initializing the next package-level
7142 variable that is earliest in declaration order and ready for initialization,
7143 until there are no variables ready for initialization.
7144 </p>
7145
7146 <p>
7147 If any variables are still uninitialized when this
7148 process ends, those variables are part of one or more initialization cycles,
7149 and the program is not valid.
7150 </p>
7151
7152 <p>
7153 Multiple variables on the left-hand side of a variable declaration initialized
7154 by single (multi-valued) expression on the right-hand side are initialized
7155 together: If any of the variables on the left-hand side is initialized, all
7156 those variables are initialized in the same step.
7157 </p>
7158
7159 <pre>
7160 var x = a
7161 var a, b = f() // a and b are initialized together, before x is initialized
7162 </pre>
7163
7164 <p>
7165 For the purpose of package initialization, <a href="#Blank_identifier">blank</a>
7166 variables are treated like any other variables in declarations.
7167 </p>
7168
7169 <p>
7170 The declaration order of variables declared in multiple files is determined
7171 by the order in which the files are presented to the compiler: Variables
7172 declared in the first file are declared before any of the variables declared
7173 in the second file, and so on.
7174 </p>
7175
7176 <p>
7177 Dependency analysis does not rely on the actual values of the
7178 variables, only on lexical <i>references</i> to them in the source,
7179 analyzed transitively. For instance, if a variable <code>x</code>'s
7180 initialization expression refers to a function whose body refers to
7181 variable <code>y</code> then <code>x</code> depends on <code>y</code>.
7182 Specifically:
7183 </p>
7184
7185 <ul>
7186 <li>
7187 A reference to a variable or function is an identifier denoting that
7188 variable or function.
7189 </li>
7190
7191 <li>
7192 A reference to a method <code>m</code> is a
7193 <a href="#Method_values">method value</a> or
7194 <a href="#Method_expressions">method expression</a> of the form
7195 <code>t.m</code>, where the (static) type of <code>t</code> is
7196 not an interface type, and the method <code>m</code> is in the
7197 <a href="#Method_sets">method set</a> of <code>t</code>.
7198 It is immaterial whether the resulting function value
7199 <code>t.m</code> is invoked.
7200 </li>
7201
7202 <li>
7203 A variable, function, or method <code>x</code> depends on a variable
7204 <code>y</code> if <code>x</code>'s initialization expression or body
7205 (for functions and methods) contains a reference to <code>y</code>
7206 or to a function or method that depends on <code>y</code>.
7207 </li>
7208 </ul>
7209
7210 <p>
7211 For example, given the declarations
7212 </p>
7213
7214 <pre>
7215 var (
7216         a = c + b  // == 9
7217         b = f()    // == 4
7218         c = f()    // == 5
7219         d = 3      // == 5 after initialization has finished
7220 )
7221
7222 func f() int {
7223         d++
7224         return d
7225 }
7226 </pre>
7227
7228 <p>
7229 the initialization order is <code>d</code>, <code>b</code>, <code>c</code>, <code>a</code>.
7230 Note that the order of subexpressions in initialization expressions is irrelevant:
7231 <code>a = c + b</code> and <code>a = b + c</code> result in the same initialization
7232 order in this example.
7233 </p>
7234
7235 <p>
7236 Dependency analysis is performed per package; only references referring
7237 to variables, functions, and (non-interface) methods declared in the current
7238 package are considered. If other, hidden, data dependencies exists between
7239 variables, the initialization order between those variables is unspecified.
7240 </p>
7241
7242 <p>
7243 For instance, given the declarations
7244 </p>
7245
7246 <pre>
7247 var x = I(T{}).ab()   // x has an undetected, hidden dependency on a and b
7248 var _ = sideEffect()  // unrelated to x, a, or b
7249 var a = b
7250 var b = 42
7251
7252 type I interface      { ab() []int }
7253 type T struct{}
7254 func (T) ab() []int   { return []int{a, b} }
7255 </pre>
7256
7257 <p>
7258 the variable <code>a</code> will be initialized after <code>b</code> but
7259 whether <code>x</code> is initialized before <code>b</code>, between
7260 <code>b</code> and <code>a</code>, or after <code>a</code>, and
7261 thus also the moment at which <code>sideEffect()</code> is called (before
7262 or after <code>x</code> is initialized) is not specified.
7263 </p>
7264
7265 <p>
7266 Variables may also be initialized using functions named <code>init</code>
7267 declared in the package block, with no arguments and no result parameters.
7268 </p>
7269
7270 <pre>
7271 func init() { … }
7272 </pre>
7273
7274 <p>
7275 Multiple such functions may be defined per package, even within a single
7276 source file. In the package block, the <code>init</code> identifier can
7277 be used only to declare <code>init</code> functions, yet the identifier
7278 itself is not <a href="#Declarations_and_scope">declared</a>. Thus
7279 <code>init</code> functions cannot be referred to from anywhere
7280 in a program.
7281 </p>
7282
7283 <p>
7284 A package with no imports is initialized by assigning initial values
7285 to all its package-level variables followed by calling all <code>init</code>
7286 functions in the order they appear in the source, possibly in multiple files,
7287 as presented to the compiler.
7288 If a package has imports, the imported packages are initialized
7289 before initializing the package itself. If multiple packages import
7290 a package, the imported package will be initialized only once.
7291 The importing of packages, by construction, guarantees that there
7292 can be no cyclic initialization dependencies.
7293 </p>
7294
7295 <p>
7296 Package initialization&mdash;variable initialization and the invocation of
7297 <code>init</code> functions&mdash;happens in a single goroutine,
7298 sequentially, one package at a time.
7299 An <code>init</code> function may launch other goroutines, which can run
7300 concurrently with the initialization code. However, initialization
7301 always sequences
7302 the <code>init</code> functions: it will not invoke the next one
7303 until the previous one has returned.
7304 </p>
7305
7306 <p>
7307 To ensure reproducible initialization behavior, build systems are encouraged
7308 to present multiple files belonging to the same package in lexical file name
7309 order to a compiler.
7310 </p>
7311
7312
7313 <h3 id="Program_execution">Program execution</h3>
7314 <p>
7315 A complete program is created by linking a single, unimported package
7316 called the <i>main package</i> with all the packages it imports, transitively.
7317 The main package must
7318 have package name <code>main</code> and
7319 declare a function <code>main</code> that takes no
7320 arguments and returns no value.
7321 </p>
7322
7323 <pre>
7324 func main() { … }
7325 </pre>
7326
7327 <p>
7328 Program execution begins by initializing the main package and then
7329 invoking the function <code>main</code>.
7330 When that function invocation returns, the program exits.
7331 It does not wait for other (non-<code>main</code>) goroutines to complete.
7332 </p>
7333
7334 <h2 id="Errors">Errors</h2>
7335
7336 <p>
7337 The predeclared type <code>error</code> is defined as
7338 </p>
7339
7340 <pre>
7341 type error interface {
7342         Error() string
7343 }
7344 </pre>
7345
7346 <p>
7347 It is the conventional interface for representing an error condition,
7348 with the nil value representing no error.
7349 For instance, a function to read data from a file might be defined:
7350 </p>
7351
7352 <pre>
7353 func Read(f *File, b []byte) (n int, err error)
7354 </pre>
7355
7356 <h2 id="Run_time_panics">Run-time panics</h2>
7357
7358 <p>
7359 Execution errors such as attempting to index an array out
7360 of bounds trigger a <i>run-time panic</i> equivalent to a call of
7361 the built-in function <a href="#Handling_panics"><code>panic</code></a>
7362 with a value of the implementation-defined interface type <code>runtime.Error</code>.
7363 That type satisfies the predeclared interface type
7364 <a href="#Errors"><code>error</code></a>.
7365 The exact error values that
7366 represent distinct run-time error conditions are unspecified.
7367 </p>
7368
7369 <pre>
7370 package runtime
7371
7372 type Error interface {
7373         error
7374         // and perhaps other methods
7375 }
7376 </pre>
7377
7378 <h2 id="System_considerations">System considerations</h2>
7379
7380 <h3 id="Package_unsafe">Package <code>unsafe</code></h3>
7381
7382 <p>
7383 The built-in package <code>unsafe</code>, known to the compiler
7384 and accessible through the <a href="#Import_declarations">import path</a> <code>"unsafe"</code>,
7385 provides facilities for low-level programming including operations
7386 that violate the type system. A package using <code>unsafe</code>
7387 must be vetted manually for type safety and may not be portable.
7388 The package provides the following interface:
7389 </p>
7390
7391 <pre class="grammar">
7392 package unsafe
7393
7394 type ArbitraryType int  // shorthand for an arbitrary Go type; it is not a real type
7395 type Pointer *ArbitraryType
7396
7397 func Alignof(variable ArbitraryType) uintptr
7398 func Offsetof(selector ArbitraryType) uintptr
7399 func Sizeof(variable ArbitraryType) uintptr
7400
7401 type IntegerType int  // shorthand for an integer type; it is not a real type
7402 func Add(ptr Pointer, len IntegerType) Pointer
7403 func Slice(ptr *ArbitraryType, len IntegerType) []ArbitraryType
7404 </pre>
7405
7406 <p>
7407 A <code>Pointer</code> is a <a href="#Pointer_types">pointer type</a> but a <code>Pointer</code>
7408 value may not be <a href="#Address_operators">dereferenced</a>.
7409 Any pointer or value of <a href="#Types">underlying type</a> <code>uintptr</code> can be converted to
7410 a type of underlying type <code>Pointer</code> and vice versa.
7411 The effect of converting between <code>Pointer</code> and <code>uintptr</code> is implementation-defined.
7412 </p>
7413
7414 <pre>
7415 var f float64
7416 bits = *(*uint64)(unsafe.Pointer(&amp;f))
7417
7418 type ptr unsafe.Pointer
7419 bits = *(*uint64)(ptr(&amp;f))
7420
7421 var p ptr = nil
7422 </pre>
7423
7424 <p>
7425 The functions <code>Alignof</code> and <code>Sizeof</code> take an expression <code>x</code>
7426 of any type and return the alignment or size, respectively, of a hypothetical variable <code>v</code>
7427 as if <code>v</code> was declared via <code>var v = x</code>.
7428 </p>
7429 <p>
7430 The function <code>Offsetof</code> takes a (possibly parenthesized) <a href="#Selectors">selector</a>
7431 <code>s.f</code>, denoting a field <code>f</code> of the struct denoted by <code>s</code>
7432 or <code>*s</code>, and returns the field offset in bytes relative to the struct's address.
7433 If <code>f</code> is an <a href="#Struct_types">embedded field</a>, it must be reachable
7434 without pointer indirections through fields of the struct.
7435 For a struct <code>s</code> with field <code>f</code>:
7436 </p>
7437
7438 <pre>
7439 uintptr(unsafe.Pointer(&amp;s)) + unsafe.Offsetof(s.f) == uintptr(unsafe.Pointer(&amp;s.f))
7440 </pre>
7441
7442 <p>
7443 Computer architectures may require memory addresses to be <i>aligned</i>;
7444 that is, for addresses of a variable to be a multiple of a factor,
7445 the variable's type's <i>alignment</i>.  The function <code>Alignof</code>
7446 takes an expression denoting a variable of any type and returns the
7447 alignment of the (type of the) variable in bytes.  For a variable
7448 <code>x</code>:
7449 </p>
7450
7451 <pre>
7452 uintptr(unsafe.Pointer(&amp;x)) % unsafe.Alignof(x) == 0
7453 </pre>
7454
7455 <p>
7456 A (variable of) type <code>T</code> has <i>variable size</i> if <code>T</code>
7457 is a type parameter, or if it is an array or struct type containing elements
7458 or fields of variable size. Otherwise the size is <i>constant</i>.
7459 Calls to <code>Alignof</code>, <code>Offsetof</code>, and <code>Sizeof</code>
7460 are compile-time <a href="#Constant_expressions">constant expressions</a> of
7461 type <code>uintptr</code> if their arguments (or the struct <code>s</code> in
7462 the selector expression <code>s.f</code> for <code>Offsetof</code>) are types
7463 of constant size.
7464 </p>
7465
7466 <p>
7467 The function <code>Add</code> adds <code>len</code> to <code>ptr</code>
7468 and returns the updated pointer <code>unsafe.Pointer(uintptr(ptr) + uintptr(len))</code>.
7469 The <code>len</code> argument must be of integer type or an untyped <a href="#Constants">constant</a>.
7470 A constant <code>len</code> argument must be <a href="#Representability">representable</a> by a value of type <code>int</code>;
7471 if it is an untyped constant it is given type <code>int</code>.
7472 The rules for <a href="/pkg/unsafe#Pointer">valid uses</a> of <code>Pointer</code> still apply.
7473 </p>
7474
7475 <p>
7476 The function <code>Slice</code> returns a slice whose underlying array starts at <code>ptr</code>
7477 and whose length and capacity are <code>len</code>.
7478 <code>Slice(ptr, len)</code> is equivalent to
7479 </p>
7480
7481 <pre>
7482 (*[len]ArbitraryType)(unsafe.Pointer(ptr))[:]
7483 </pre>
7484
7485 <p>
7486 except that, as a special case, if <code>ptr</code>
7487 is <code>nil</code> and <code>len</code> is zero,
7488 <code>Slice</code> returns <code>nil</code>.
7489 </p>
7490
7491 <p>
7492 The <code>len</code> argument must be of integer type or an untyped <a href="#Constants">constant</a>.
7493 A constant <code>len</code> argument must be non-negative and <a href="#Representability">representable</a> by a value of type <code>int</code>;
7494 if it is an untyped constant it is given type <code>int</code>.
7495 At run time, if <code>len</code> is negative,
7496 or if <code>ptr</code> is <code>nil</code> and <code>len</code> is not zero,
7497 a <a href="#Run_time_panics">run-time panic</a> occurs.
7498 </p>
7499
7500 <h3 id="Size_and_alignment_guarantees">Size and alignment guarantees</h3>
7501
7502 <p>
7503 For the <a href="#Numeric_types">numeric types</a>, the following sizes are guaranteed:
7504 </p>
7505
7506 <pre class="grammar">
7507 type                                 size in bytes
7508
7509 byte, uint8, int8                     1
7510 uint16, int16                         2
7511 uint32, int32, float32                4
7512 uint64, int64, float64, complex64     8
7513 complex128                           16
7514 </pre>
7515
7516 <p>
7517 The following minimal alignment properties are guaranteed:
7518 </p>
7519 <ol>
7520 <li>For a variable <code>x</code> of any type: <code>unsafe.Alignof(x)</code> is at least 1.
7521 </li>
7522
7523 <li>For a variable <code>x</code> of struct type: <code>unsafe.Alignof(x)</code> is the largest of
7524    all the values <code>unsafe.Alignof(x.f)</code> for each field <code>f</code> of <code>x</code>, but at least 1.
7525 </li>
7526
7527 <li>For a variable <code>x</code> of array type: <code>unsafe.Alignof(x)</code> is the same as
7528         the alignment of a variable of the array's element type.
7529 </li>
7530 </ol>
7531
7532 <p>
7533 A struct or array type has size zero if it contains no fields (or elements, respectively) that have a size greater than zero. Two distinct zero-size variables may have the same address in memory.
7534 </p>