osrm-backend/profiles/lib/sequence.lua
2017-07-18 10:09:22 +00:00

10 lines
253 B
Lua

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