Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
Possibly from APL? The Greek letter Iota was used to generate a vector of consecutive integers. – cbuckley Feb 11 '12 at 23:24
If you think that's confusing, Google Go makes iota a <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

3 Answers

up vote 21 down vote accepted

From http://www.sgi.com/tech/stl/iota.html:

The name iota is taken from the programming language APL.

In his Turing Award lecture, Ken Iverson (inventor of APL) said this:

For example, the integer function denoted by ι produces a vector of the first N integers when applied to the argument N, …

That funny character is the lower-case Greek letter iota. I typed ι, U+03B9, “GREEK SMALL LETTER IOTA”, but Unicode actually has a dedicated code point for APL's iota: is U+2373, “APL FUNCTIONAL SYMBOL IOTA”.

share|improve this answer

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.

share|improve this answer
+1 for mentioning greek letter. – Jesse Good Feb 11 '12 at 23:34

std::iota will fill an iterator range with successively incremented values.

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.