j
k
j a
j l
well, if we introduce counting from the end, why not allow a range that starts relative to the end too?
a[x..<y] == a[x..sizeof(a)-y] a[<x..y] == a[sizeof(a)-x..y] a[<x..<y] == a[sizeof(a)-x..sizeof(a)-y]
may be off by one, but you get the idea.
Back to the thread
Back to the list