Skip to content

Commit

Permalink
* object.c (rb_check_to_int): new function to convert a VALUE to
Browse files Browse the repository at this point in the history
  an Integer if possible, but returns nil instead of raising an
  exception otherwise.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34007 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Dec 11, 2011
1 parent 0468b1b commit c5fc4da
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Sun Dec 11 10:37:47 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>

* object.c (rb_check_to_int): new function to convert a VALUE to
an Integer if possible, but returns nil instead of raising an
exception otherwise.

Sun Dec 11 10:34:39 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>

* process.c (rb_exit_status_code): extract from rb_f_exit_bang and
Expand Down
1 change: 1 addition & 0 deletions include/ruby/intern.h
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,7 @@ VALUE rb_check_convert_type(VALUE,int,const char*,const char*);
VALUE rb_check_to_integer(VALUE, const char *);
VALUE rb_check_to_float(VALUE);
VALUE rb_to_int(VALUE);
VALUE rb_check_to_int(VALUE);
VALUE rb_Integer(VALUE);
VALUE rb_to_float(VALUE);
VALUE rb_Float(VALUE);
Expand Down
6 changes: 6 additions & 0 deletions object.c
Original file line number Diff line number Diff line change
Expand Up @@ -2187,6 +2187,12 @@ rb_to_int(VALUE val)
return rb_to_integer(val, "to_int");
}

VALUE
rb_check_to_int(VALUE val)
{
return rb_check_to_integer(val, "to_int");
}

static VALUE
rb_convert_to_integer(VALUE val, int base)
{
Expand Down

0 comments on commit c5fc4da

Please sign in to comment.