diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-09-19 22:19:55 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-11-19 12:08:28 +0900 |
| commit | 698f5f707c2db334a15c605bf1b0d0cff42b1224 (patch) | |
| tree | 21b6e810ae42fe51c1531b273ac78e288a7d6fe0 /include | |
| parent | 5bbcea9b3bdb0e7dc048f92cebefb54858196935 (diff) | |
| download | mruby-698f5f707c2db334a15c605bf1b0d0cff42b1224.tar.gz mruby-698f5f707c2db334a15c605bf1b0d0cff42b1224.zip | |
Removed `to_ary` conversion method.
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/array.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mruby/array.h b/include/mruby/array.h index 6fffe4512..2457f68f2 100644 --- a/include/mruby/array.h +++ b/include/mruby/array.h @@ -199,6 +199,7 @@ MRB_API void mrb_ary_set(mrb_state *mrb, mrb_value ary, mrb_int n, mrb_value val * @param other The array to replace it with. */ MRB_API void mrb_ary_replace(mrb_state *mrb, mrb_value self, mrb_value other); +MRB_API mrb_value mrb_ensure_array_type(mrb_state *mrb, mrb_value self); MRB_API mrb_value mrb_check_array_type(mrb_state *mrb, mrb_value self); /* |
