Operators And Expressions - Golang - Complete Documentation by ntxm.org

Arithmetic and Assignment Operators

Learn about arithmetic operators (+, -, *, /, %) for calculations, assignment operators (=, +=, -=, etc.) for storing values, and the increment and decrement operators (++, --) in Go.

Comparison and Logical Operators

Understand how to compare values and combine boolean expressions in Go using comparison and logical operators

Bitwise and Shift Operators

How to use Go's bitwise and shift operators to manipulate individual bits of integers, with clear examples and common mistakes

Other Operators and Expression Rules

Learn about Go's address and pointer operators, the full operator precedence table, and the rules that govern the order of evaluation inside expressions.