From 3632a812c0b1e0bd1c75b2426cbfe9ec1715bb56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3?= Date: Wed, 25 Sep 2019 13:00:56 +0900 Subject: refactor add rb_id_table_foreach_with_replace_with_key This is a pure refactoring to reduce copy & paste. Also the new function is made visible from other parts of the interpreter, to be used later. --- id_table.h | 1 + 1 file changed, 1 insertion(+) (limited to 'id_table.h') diff --git a/id_table.h b/id_table.h index 07ad1b8e72..19181190ea 100644 --- a/id_table.h +++ b/id_table.h @@ -28,6 +28,7 @@ typedef enum rb_id_table_iterator_result rb_id_table_foreach_func_t(ID id, VALUE typedef enum rb_id_table_iterator_result rb_id_table_foreach_values_func_t(VALUE val, void *data); void rb_id_table_foreach(struct rb_id_table *tbl, rb_id_table_foreach_func_t *func, void *data); void rb_id_table_foreach_with_replace(struct rb_id_table *tbl, rb_id_table_foreach_func_t *func, rb_id_table_update_callback_func_t *replace, void *data); +void rb_id_table_foreach_with_replace_with_key(struct rb_id_table *tbl, rb_id_table_foreach_func_t *func, rb_id_table_update_callback_func_t *replace, void *data, bool needkey); void rb_id_table_foreach_values(struct rb_id_table *tbl, rb_id_table_foreach_values_func_t *func, void *data); #endif /* RUBY_ID_TABLE_H */ -- cgit v1.2.1