From 692fae5416ce1f2702b599ffb27b2e3d2235eba7 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 26 Sep 2018 12:45:08 -0700 Subject: Incremental fixes and more nomnom ports. --- containers.moon | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'containers.moon') diff --git a/containers.moon b/containers.moon index 039a4ea..8a7d7fa 100644 --- a/containers.moon +++ b/containers.moon @@ -76,6 +76,11 @@ _list_mt = if x == item return i return nil + slice_1_to_2: (start, stop)=> + n = #@ + start = (n+1-start) if n < 0 + stop = (n+1-stop) if n < 0 + return [@[i] for i=start,stop] -- TODO: remove this safety check to get better performance? __newindex: (k,v)=> assert type(k) == 'number', "List indices must be numbers" -- cgit v1.2.3