ActionsLike0
Feature #10444
closed[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
Updated by marcandre (Marc-Andre Lafortune) over 10 years ago
- Status changed from Open to Feedback
Updated by marcandre (Marc-Andre Lafortune) over 10 years ago
- Status changed from Feedback to Rejected
ActionsLike0