[ruby-core:94769] [Ruby master Feature#16141] Change in the array[x, y] notation.

From: professeurx@...
Date: 2019-09-04 02:55:40 UTC
List: ruby-core #94769
Issue #16141 has been reported by professeurx (Fran輟ys Proulx).

----------------------------------------
Feature #16141: Change in the array[x,y] notation.
https://bugs.ruby-lang.org/issues/16141

* Author: professeurx (Fran輟ys Proulx)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------

It not a bug, but it's an oddity of the language.

``` ruby
array_four  = %w[a b c d e f g] 

p array_four[1,3]  
p array_four[-1,3]  
p array_four[3,3] 
p array_four[-3,2] 
p array_four[-3, -2] 

["b", "c", "d"]
["g"]
["d", "e", "f"]
["e", "f"]
nil

```
p array_four[-3, -2]  do not follow the principal of the least surprise!
the logical output would be ["d", "e"]

The way i see this
p array_four[-3,2] # take 3 step from the end and take 2 elements incrementally 

and
p array_four[-3,-2] # take 3 step from the end and take 2 elements decrementally

The change wouldn't affect the retro-compatibility of the language.





-- 
https://bugs.ruby-lang.org/

Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>

In This Thread

Prev Next