Difference between revisions of "sequence"

(Created page with "From the Lua 5.2 [http://www.lua.org/manual/5.2/manual.html reference manual]: We use the term sequence to denote a table where the set of all positive numeric keys is equal...")
 
Line 2: Line 2:
  
 
We use the term sequence to denote a [[table]] where the set of all positive numeric keys is equal to {1..n} for some integer n, which is called the length of the sequence (see [http://www.lua.org/manual/5.2/manual.html#3.4.6 §3.4.6]).
 
We use the term sequence to denote a [[table]] where the set of all positive numeric keys is equal to {1..n} for some integer n, which is called the length of the sequence (see [http://www.lua.org/manual/5.2/manual.html#3.4.6 §3.4.6]).
 +
 +
[[Category:Lua]]
 +
== Other Languages ==
 +
{{i18n|sequence}}

Revision as of 22:58, 5 February 2012

From the Lua 5.2 reference manual:

We use the term sequence to denote a table where the set of all positive numeric keys is equal to {1..n} for some integer n, which is called the length of the sequence (see §3.4.6).

Other Languages