Files
mruby-mruby/src
dearblue 26eb29547b Support undef for mrb_ary_splice() instead of []
When removing elements from an array, it is possible to avoid creating
an empty array.

Before this patch:

```c
mrb_ary_splice(mrb, ary, head, len, mrb_ary_new(mrb));
```

After this patch:

```c
mrb_ary_splice(mrb, ary, head, len, mrb_undef_value());
```
2020-04-24 21:32:35 +09:00
..
2019-10-17 23:49:58 +09:00
2019-09-16 11:58:35 +09:00
2019-12-25 21:31:10 +09:00
2020-01-06 15:52:39 +09:00
2019-11-11 20:48:52 +09:00
2019-12-17 23:16:20 +09:00
2016-05-09 17:19:47 +02:00