From 8cc5f74ffc4097173ae69b0098524a5faecaee7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3?= Date: Mon, 17 Aug 2020 11:54:12 +0900 Subject: RHASH_EMPTY_P: convert into an inline function --- internal/hash.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'internal/hash.h') diff --git a/internal/hash.h b/internal/hash.h index 73d71deaa2..b0c23c2b2e 100644 --- a/internal/hash.h +++ b/internal/hash.h @@ -64,6 +64,10 @@ struct RHash { # undef RHASH_SIZE #endif +#ifdef RHASH_EMPTY_P +# undef RHASH_EMPTY_P +#endif + /* hash.c */ void rb_hash_st_table_set(VALUE hash, st_table *st); VALUE rb_hash_default_value(VALUE hash, VALUE key); @@ -82,6 +86,7 @@ int rb_hash_stlike_update(VALUE hash, st_data_t key, st_update_callback_func *fu static inline unsigned RHASH_AR_TABLE_SIZE_RAW(VALUE h); static inline VALUE RHASH_IFNONE(VALUE h); static inline size_t RHASH_SIZE(VALUE h); +static inline bool RHASH_EMPTY_P(VALUE h); static inline bool RHASH_AR_TABLE_P(VALUE h); static inline bool RHASH_ST_TABLE_P(VALUE h); static inline struct ar_table_struct *RHASH_AR_TABLE(VALUE h); @@ -173,6 +178,12 @@ RHASH_SIZE(VALUE h) } } +static inline bool +RHASH_EMPTY_P(VALUE h) +{ + return RHASH_SIZE(h) == 0; +} + static inline bool RHASH_ST_TABLE_P(VALUE h) { -- cgit v1.2.3