osrm-backend/profiles/lib/sequence.lua
2016-11-18 00:21:34 +01:00

10 lines
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