Closed japaric closed 9 years ago
Does m.slice((a,b)..(c,d)) look better than m.slice((a,b), (c,d))?
m.slice((a,b)..(c,d))
m.slice((a,b), (c,d))
At least I could remove m.slice_to((a, b)) in favor of m.slice(..(a, b)) (same thing with the slice_from method).
m.slice_to((a, b))
m.slice(..(a, b))
slice_from
Implemented in 42f00aa51253969d7e1754422be5a3e2453b8c42.
Does
m.slice((a,b)..(c,d))
look better thanm.slice((a,b), (c,d))
?At least I could remove
m.slice_to((a, b))
in favor ofm.slice(..(a, b))
(same thing with theslice_from
method).