Actions
Feature #10444
closed[PATCH 3/3] Vector#[] returns new vector if argument is range.
Feature #10444: [PATCH 3/3] Vector#[] returns new vector if argument is range.
Description
Hi, it's incompatible change little bit.
Before
Vector[1,2,3][0..1] => [1, 2] After
Vector[1,2,3][0..1] => Vector[1, 2] I'm not in a hurry. Take your time.
Files
Actions