josecastro (joseph castro)
- Login: josecastro
- Email: joseph.castro.riquelme@gmail.com
- Registered on: 07/22/2014
- Last sign in: 07/22/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
07/23/2014
-
02:15 AM Ruby Feature #10083 (Rejected): String.to_i unexpected behavior
- Hi
There's the issue:
~~~ruby
"String".to_i => 0
~~~
This must be NIL or at least error, but no 0, because the string is not a number, also:
~~~ruby
"10String".to_i => 10
~~~
Is not 10, because "10String" is not a ...