Go Concepts - Operators: Difference between revisions
Jump to navigation
Jump to search
(→+) |
(→+) |
||
Line 11: | Line 11: | ||
Applies to: | Applies to: | ||
* [[Go strings]] | * [[Go Strings#Concatenation_Operator|strings]] | ||
=-= | =-= |
Revision as of 01:45, 23 March 2016
External
- Go Specification - Operators: https://golang.org/ref/spec#Operators
Internal
+
Addition or concatenation.
Applies to:
-
Subtraction
*
Multiplication
/
Division
%
Remainder
=
The assignment operator.
==
[]
"[]" is the indexing operator. If the index is out of bounds, the runtime generates a run-time panic:
panic: runtime error: index out of range
Applies to:
- strings
- arrays
:=
Variable declaration and assignment. Also known as short variable declaration operator.