orchidmap-front/osrm/lib/sequence.lua
2018-08-27 15:51:26 +07:00

10 lines
No EOL
186 B
Lua

-- Sequence of items
-- Ordered, but have to loop through items to check for inclusion.
-- Currently the same as a table.
function Sequence(source)
return source
end
return Sequence