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.
|
2017-05-18 08:27:28 -04:00
|
|
|
-- Adds the convenience function append() to append to the sequnce.
|
2016-11-15 07:36:39 -05:00
|
|
|
|
|
|
|
function Sequence(source)
|
|
|
|
return source
|
|
|
|
end
|
|
|
|
|
|
|
|
return Sequence
|