diff options
author | Nobuyoshi Nakada <[email protected]> | 2021-10-02 08:40:37 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-10-02 11:43:35 +0900 |
commit | 806e7947fec775ce27aa783ee00dbd8f52685db8 () | |
tree | 2b3ef290f4f9a418ca0e10e2c59a4932be93ca9e /internal | |
parent | 601c67e42ccdd0cab10c8e1097401876f24308b0 (diff) |
Add rb_ident_hash_new_with_size
Notes: Merged: https://.com/ruby/ruby/pull/4893
-rw-r--r-- | internal/hash.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -83,6 +83,7 @@ int rb_hash_stlike_delete(VALUE hash, st_data_t *pkey, st_data_t *pval); int rb_hash_stlike_foreach_with_replace(VALUE hash, st_foreach_check_callback_func *func, st_update_callback_func *replace, st_data_t arg); int rb_hash_stlike_update(VALUE hash, st_data_t key, st_update_callback_func *func, st_data_t arg); extern st_table *rb_hash_st_table(VALUE hash); static inline unsigned RHASH_AR_TABLE_SIZE_RAW(VALUE h); static inline VALUE RHASH_IFNONE(VALUE h); |