Switched accumulate() to return a table, not a string.

This commit is contained in:
Bruce Hill 2018-02-01 16:40:06 -08:00
parent f1d4a568a3
commit 75c6755d32

View File

@ -127,15 +127,12 @@ local function remove_from_list(list, item)
for i=N-deleted+1,N do list[i] = nil end
end
local function accumulate(glue, co)
if co == nil then
glue, co = "", glue
end
local bits = { }
local function accumulate(co)
local bits = {}
for bit in coroutine.wrap(co) do
bits[#bits+1] = bit
end
return table.concat(bits, glue)
return bits
end
local function nth_to_last(list, n)