Files
mruby-mruby/include/mruby
cremno 7691b64963 array implementation: several small changes
src/array.c:
 - make various functions without declaration in the mruby headers static
 - removed all uncessary int casts and two useless comments
 mrb_ary_new_from_values: move to similar functions
 mrb_check_array_type: fix indentation

include/mruby/array.h:
 mrb_shared_array: padding (default "mrbconf.h" on an usual 64-bit system)
                   sizeof(mrb_int)==sizeof(int)==4 && sizeof(mrb_value*)==8

both:
 mrb_ary_aget:  remove declaration in header and make static
                nobody uses it which is not surprising since it has 1 req arg!
 mrb_assoc_new: small optimization and move to similar functions
 mrb_ary_len:   re-implement as static inline function (it is used by mrbgems)
                programmers should directly use RARRAY_LEN instead
2014-02-12 00:37:47 +01:00
..
2013-09-21 17:28:47 +09:00
2014-01-31 18:00:36 +01:00
2013-08-15 01:39:05 +09:00
2014-01-31 17:42:05 +01:00
2013-11-19 20:38:02 +09:00
2014-01-31 18:00:36 +01:00
2014-01-31 18:00:36 +01:00
2013-10-10 12:12:29 +09:00
2014-02-11 15:37:03 +09:00