| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-12-03 | Array#[]= should return assigning value; close #584 | Yukihiro Matz Matsumoto | |
| 2012-11-17 | int and mrb_int should not be mixed under -DMRB_INT64; may fix #557 | Yukihiro Matz Matsumoto | |
| 2012-11-04 | remove FL_XXX macros | Yukihiro Matz Matsumoto | |
| 2012-11-04 | add new predicates mrb_string_p(),mrb_array_p(),mrb_hash_p() | Yukihiro Matz Matsumoto | |
| 2012-11-04 | replace FIXNUM_P() by mrb_fixnum_p() | Yukihiro Matz Matsumoto | |
| 2012-10-23 | mrb_raisef(): new function. Same as previou version of mrb_raise(). | Masaki Muranaka | |
| mrb_raise(): API modified. It cannot treat variable arguments. | |||
| 2012-10-21 | Avoid memcpy() on copying structures. | Masaki Muranaka | |
| 2012-09-27 | should adjust array size | Yukihiro Matsumoto | |
| 2012-09-12 | typo fixed | Yukihiro Matsumoto | |
| 2012-09-10 | Array#reverse! should call ary_modify | Yukihiro Matsumoto | |
| 2012-09-10 | eagerly reduce allocated array memory | Yukihiro Matsumoto | |
| 2012-09-10 | use mrb_malloc instead of clearing mrb_calloc | Yukihiro Matsumoto | |
| 2012-09-10 | check special_const before calling respond_to? | Yukihiro Matsumoto | |
| 2012-08-18 | reduce mrb_funcall invocations | Yukihiro Matsumoto | |
| 2012-07-31 | Remove redundant code in mrb_array_aget(). | Masaki Muranaka | |
| 2012-07-29 | Make all(?) void casts explicit for C++ | Max Anselm | |
| 2012-07-29 | fix segmentation fault in Array#first | Akira Kuroda | |
| 2012-07-25 | fix segmentation fault in Array#last | Akira Kuroda | |
| 2012-07-15 | Array#join to accept only strings as sep | Yukihiro Matsumoto | |
| 2012-07-10 | Add ary_modify to prevent corrupting shared array. | Masamitsu MURASE | |
| 2012-07-08 | Use mrb_calloc if you want zero cleard buffers. | Masaki Muranaka | |
| 2012-07-07 | Optimize range check. | Masaki Muranaka | |
| 2012-06-22 | Use mrb_str_new() instead of mrb_str_new2() as possible. | Masaki Muranaka | |
| 2012-06-21 | Remove strlen(). We can use sizeof() of char array because sizeof(char) is ↵ | Masaki Muranaka | |
| always 1 (ISO C99). | |||
| 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 | |
