mernen (Daniel Luz)
- Login: mernen
- Email: from.ruby-lang.ae@mernen.com
- Registered on: 11/09/2008
- Last sign in: 03/09/2009
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
02/07/2009
-
08:48 AM Ruby Feature #1125 (Closed): [*x] (array consisting only of a splat) does not necessarily return a new array
- =begin
For [*x], these are basically the possible outcomes:
1. if x is an Array, returns it unmodified.
2. elsif x responds to to_ary (to_a on 1.9.1), invokes that method and returns its result unmodified.
3. else, returns a n...