Added 'reversed' method for lists.
This commit is contained in:
parent
bc41cc3a24
commit
b714a55ec0
@ -225,6 +225,17 @@ local _list_mt = {
|
|||||||
end
|
end
|
||||||
return _accum_0
|
return _accum_0
|
||||||
end)())
|
end)())
|
||||||
|
end,
|
||||||
|
reversed = function(self)
|
||||||
|
return List((function()
|
||||||
|
local _accum_0 = { }
|
||||||
|
local _len_0 = 1
|
||||||
|
for i = #self, 1, -1 do
|
||||||
|
_accum_0[_len_0] = self[i]
|
||||||
|
_len_0 = _len_0 + 1
|
||||||
|
end
|
||||||
|
return _accum_0
|
||||||
|
end)())
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
__newindex = function(self, k, v)
|
__newindex = function(self, k, v)
|
||||||
|
@ -88,6 +88,9 @@ _list_mt =
|
|||||||
start = (n+1-start) if start < 0
|
start = (n+1-start) if start < 0
|
||||||
stop = (n+1-stop) if stop < 0
|
stop = (n+1-stop) if stop < 0
|
||||||
return List[@[i] for i=start,stop]
|
return List[@[i] for i=start,stop]
|
||||||
|
|
||||||
|
reversed: => List[@[i] for i=#@,1,-1]
|
||||||
|
|
||||||
-- TODO: remove this safety check to get better performance?
|
-- TODO: remove this safety check to get better performance?
|
||||||
__newindex: (k,v)=>
|
__newindex: (k,v)=>
|
||||||
assert type(k) == 'number', "List indices must be numbers"
|
assert type(k) == 'number', "List indices must be numbers"
|
||||||
|
Loading…
Reference in New Issue
Block a user