What is the full name for "iota" in golang?

As a header, what is the full name for iota (and not use) in golang:

 const ( // iota is reset to 0 c0 = iota // c0 == 0 c1 = iota // c1 == 1 c2 = iota // c2 == 2 ) 
+5
source share
1 answer

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 ).

+9
source

All Articles