Closed
Description
Lists are enumerable
, What does enumerable mean?
Is the meaning of enumerable that you can refer to a value by numerical reference (by counting from left to right)?
Say I have a list: ["a", "b", "c"]
, the numerical reference/ index of a
would be 0
, b = 1, c = 2
?
I've looked at dictionary definitions as well as this forum question: http://softwareengineering.stackexchange.com/questions/199592/what-does-enumerable-mean and can't tell if it's more complex than my original assumption.