| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-06-13 | optimize Array#unshift using shared body object | Yukihiro Matsumoto | |
| 2012-06-13 | wrong ary->capa size was set in ary_modify() | Yukihiro Matsumoto | |
| 2012-06-05 | mruby/array.h: rename buf to ptr | Yukihiro Matsumoto | |
| 2012-06-03 | make arrays to share bodies | Yukihiro Matsumoto | |
| 2012-06-02 | remove unused mrb_mem_clear | Yukihiro Matsumoto | |
| 2012-06-02 | clean appendix comments from array.c | Yukihiro Matsumoto | |
| 2012-06-02 | unify long,size_t to int in array.[ch] | Yukihiro Matsumoto | |
| 2012-06-02 | changed prototype mrb_ary_replace to (mrb_state*,mrb_value,mrb_value) | Yukihiro Matsumoto | |
| 2012-06-02 | small refactoring around Array#concat | Yukihiro Matsumoto | |
| 2012-06-02 | remove ary_reverse that no longer used | Yukihiro Matsumoto | |
| 2012-06-02 | add proper type check (using mrb_get_args) in Array#replace | Yukihiro Matsumoto | |
| 2012-06-02 | avoid using mrb_value in Array#+ | Yukihiro Matsumoto | |
| 2012-06-02 | Array#reverse revisited | Yukihiro Matsumoto | |
| 2012-06-01 | reorder mrb_ary_new_from_values() args to (argc, argv) | Yukihiro Matsumoto | |
| 2012-06-01 | remove prototype for mrb_exec_recursive_paired() | Yukihiro Matsumoto | |
| 2012-06-01 | stop using mrb_exec_recursive_paired() from Array comparison | Yukihiro Matsumoto | |
| 2012-05-24 | simplify Array#join | Yukihiro Matsumoto | |
| 2012-05-24 | made mrb_get_args() better (optinal args, type checks); close #173 #176 | Yukihiro Matsumoto | |
| 2012-05-23 | cast style consistency | Yukihiro Matsumoto | |
| 2012-05-20 | More C++ compilability work: mrb_obj_alloc void* conversions | Mitchell Blank Jr | |
| One of the biggest set of changes needed to make C++ compile, is that you can't autoconvert "void*" to a different pointer type without a cast (you can of course, convert pointers *to* "void*"!) For the first part, convert the users of "mrb_obj_alloc". Since it has to return something, make it RBasic* (that's what mrb_obj_alloc() is operating on anyway). This way, even in C you'll get a warning if you don't cast it. For places where there are a lot of similar calls to mrb_obj_alloc(), this can be easily hidden through a macro. I did this in string.c: #define mrb_obj_alloc_string(mrb) ((struct RString *) mrb_obj_alloc((mrb), MRB_TT_STRING, (mrb)->string_class)) I also updated the mrb_object() macro to also return a RBasic* -- my previous commit changed that from "void*" -> "RObject*", but I figure it should be consistent with mrb_obj_alloc() | |||
| 2012-05-10 | remove code moved to mrblib/array.rb | Yukihiro Matsumoto | |
| 2012-05-10 | remove INCLUDE_REGEXP dependency from array.c | Yukihiro Matsumoto | |
| 2012-05-03 | Fix SEGV caused by using the splat operator for non arrays | Kazuki Tsujimoto | |
| 2012-04-30 | rm whitespace | roco | |
| 2012-04-26 | mrb_ary_dup is only used by mrb_ary_sort which is removed by #if 0 | Patrick Hogan | |
| Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-23 | remove code for unsupported taint-mode | Yukihiro Matsumoto | |
| 2012-04-23 | Merge branch 'master' of github.com:mruby/mruby | mimaki | |
| Conflicts: src/variable.c | |||
| 2012-04-23 | add file header | mimaki | |
| 2012-04-21 | avoid integer overflow | Yukihiro Matsumoto | |
| 2012-04-20 | Remove unnecessary check for size_t < 0 | Patrick Hogan | |
| size_t can never be negative since it is an unsigned integer according to standard. Removed to silence warning. Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-20 | move src/mdata.h to include/mruby/data.h | Yukihiro Matsumoto | |
| 2012-04-20 | add mruby sources | mimaki | |
