osrm-backend/profiles/lib/sequence.lua

10 lines
186 B
Lua
Raw Normal View History

2016-11-15 07:36:39 -05:00
-- Sequence of items
2016-11-15 12:06:27 -05:00
-- Ordered, but have to loop through items to check for inclusion.
2016-11-15 07:36:39 -05:00
-- Currently the same as a table.
function Sequence(source)
return source
end
return Sequence