I'm assuming the "i" is increment and the "a" is assign, but I could not figure out or find the answer. Also, it looks very similar to the non-standard itoa which I think is confusing.
|
|
||||
|
From http://www.sgi.com/tech/stl/iota.html:
In his Turing Award lecture, Ken Iverson (inventor of APL) said this:
That funny character is the lower-case Greek letter iota. I typed |
||||
|
|
|
Its the greek letter that sometimes gets used in mathematics to denote sets of numbers or unit vectors. In the C++ case, you get a constructed vector set. Nothing to do with itoa. |
|||
|
|
|
To answer your specific question, it actually doesn't stand for anything. Iota is a greek letter with mathematical connotations. It is standard in C++11, but not in earlier standards. |
|||
|
|
iotaa <s>keyword</s> specially declared identifier, whose value is incremented once per definition, but only when you're defining constants. – Potatoswatter Feb 12 '12 at 14:06