mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* hash.c (rb_check_hash_type): added.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28845 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
292c39098d
commit
b80d5f14df
3 changed files with 12 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Tue Aug 3 21:01:10 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* hash.c (rb_check_hash_type): added.
|
||||||
|
|
||||||
Tue Aug 3 20:30:16 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Tue Aug 3 20:30:16 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* bignum.c (rb_big_eq): never equal to infinity.
|
* bignum.c (rb_big_eq): never equal to infinity.
|
||||||
|
|
8
hash.c
8
hash.c
|
@ -418,6 +418,12 @@ to_hash(VALUE hash)
|
||||||
return rb_convert_type(hash, T_HASH, "Hash", "to_hash");
|
return rb_convert_type(hash, T_HASH, "Hash", "to_hash");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VALUE
|
||||||
|
rb_check_hash_type(VALUE hash)
|
||||||
|
{
|
||||||
|
return rb_check_convert_type(hash, T_HASH, "Hash", "to_hash");
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* call-seq:
|
* call-seq:
|
||||||
* Hash.try_convert(obj) -> hash or nil
|
* Hash.try_convert(obj) -> hash or nil
|
||||||
|
@ -432,7 +438,7 @@ to_hash(VALUE hash)
|
||||||
static VALUE
|
static VALUE
|
||||||
rb_hash_s_try_convert(VALUE dummy, VALUE hash)
|
rb_hash_s_try_convert(VALUE dummy, VALUE hash)
|
||||||
{
|
{
|
||||||
return rb_check_convert_type(hash, T_HASH, "Hash", "to_hash");
|
return rb_check_hash_type(hash);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
|
|
@ -406,6 +406,7 @@ VALUE rb_gc_start(void);
|
||||||
#define Init_stack(addr) ruby_init_stack(addr)
|
#define Init_stack(addr) ruby_init_stack(addr)
|
||||||
/* hash.c */
|
/* hash.c */
|
||||||
void st_foreach_safe(struct st_table *, int (*)(ANYARGS), st_data_t);
|
void st_foreach_safe(struct st_table *, int (*)(ANYARGS), st_data_t);
|
||||||
|
VALUE rb_check_hash_type(VALUE);
|
||||||
void rb_hash_foreach(VALUE, int (*)(ANYARGS), VALUE);
|
void rb_hash_foreach(VALUE, int (*)(ANYARGS), VALUE);
|
||||||
VALUE rb_hash(VALUE);
|
VALUE rb_hash(VALUE);
|
||||||
VALUE rb_hash_new(void);
|
VALUE rb_hash_new(void);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue