As a header, what is the full name for iota (and not use) in golang:
iota
const ( // iota is reset to 0 c0 = iota // c0 == 0 c1 = iota // c1 == 1 c2 = iota // c2 == 2 )
This full name is in itself. "iota" is the letter of the Greek alphabet. This is typical of mathematical notation:
You can find it in other programming languages (see iota in the diagram ).