Difference between revisions of "sequence"
m |
(Add example without explicit indices) |
||
(One intermediate revision by one other user not shown) | |||
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]). | ||
+ | |||
+ | <source lang='lua'> | ||
+ | sequence = { 'foo', 'bar', 'baz', 'qux', --[[ ... ]] } | ||
+ | |||
+ | -- or | ||
+ | |||
+ | sequence = { | ||
+ | [1] = 'foo', | ||
+ | [2] = 'bar', | ||
+ | [3] = 'baz', | ||
+ | [4] = 'qux', | ||
+ | -- [n] = ..., | ||
+ | } | ||
+ | </source> | ||
[[Category:Lua]] | [[Category:Lua]] | ||
== Other Languages == | == Other Languages == | ||
{{i18n|sequence}} | {{i18n|sequence}} |
Latest revision as of 15:28, 28 January 2015
From the Lua 5.2 reference manual §2.1:
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).
sequence = { 'foo', 'bar', 'baz', 'qux', --[[ ... ]] }
-- or
sequence = {
[1] = 'foo',
[2] = 'bar',
[3] = 'baz',
[4] = 'qux',
-- [n] = ...,
}
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info