1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-18 13:12:50 +00:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
788 B
ReStructuredText
Raw Normal View History

Iterable types
==============
.. include:: version.rst
List Iterable
-------------
An iterable with defined size and order.
.. code-block:: Lua
-- can iterate over the list with pairs
for i, v in pairs(list) do
-- ...
end
.. code-block:: Lua
-- can iterate over the list with ipairs
for i, v in ipairs(list) do
-- ...
end
.. code-block:: Lua
-- can get total size with the size # operator
local length = #list
.. code-block:: Lua
-- can index the list with numbers
for i = 1, length do
list[i]
end
Map Iterable
------------
An iterable with undefined order.
.. code-block:: Lua
-- can iterate over the map with pairs
for k, v in pairs(map) do
-- ...
end
.. code-block:: Lua
-- can index the map by key
map[key]