index
:
mruby
master
mruby2-draft
removing-y-tab-c
revert-5391-throw
stable
web_export
Lightweight Ruby
realtradam
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
/
array.c
Age
Commit message (
Expand
)
Author
2013-03-26
Remove #if 0 ... #endif code.
Masaki Muranaka
2013-03-24
Adjusted indent, space and tab
MATSUMOTO Ryosuke
2013-03-24
resolve conflict
Yukihiro Matz Matsumoto
2013-03-23
Make array.c and vm.c share value_move().
Masaki Muranaka
2013-03-22
Use mrb_intern2() instead of mrb_intern(). This is for avoiding overhead by s...
Masaki Muranaka
2013-03-19
rename mrb_true_or_false_value() to mrb_bool_value()
Yukihiro Matz Matsumoto
2013-03-19
Use mrb_true_or_false_value() / in mrb_ary_eql().
Masaki Muranaka
2013-03-19
Use mrb_true_or_false_value() / in mrb_ary_equal().
Masaki Muranaka
2013-03-19
Use mrb_true_or_false_value() / in mrb_ary_empty_p().
Masaki Muranaka
2013-03-14
Add break to default case in switch statement
kano4
2013-03-11
return value from mrb_gc_arena_save() is int
Yukihiro Matz Matsumoto
2013-03-08
define and use print format macros for mrb_int
Cremno
2013-03-08
unify mrb_ary_new{,_elts,_from_values}; mrb_ary_from_values() is a winner
Yukihiro Matz Matsumoto
2013-03-05
Add null check after mrb_realloc for array
Carson McDonald
2013-03-04
fix mrb_int for INT64 env
Yukihiro Matz Matsumoto
2013-03-03
Merge pull request #934 from monaka/pr-use-mrb_int-in-array.c
Yukihiro "Matz" Matsumoto
2013-03-03
Define ARY_MAX_SIZE strictly. Use mrb_int instead of int.
Masaki Muranaka
2013-03-02
Adjust some indents
MATSUMOTO Ryosuke
2013-03-01
Add typedef to structures that have mrb_ prefix. Use typedef-ed type instead ...
Masaki Muranaka
2013-02-27
Add document for array_copy
NARUSE, Yui
2013-01-30
rename mrb_ary_alen to mrb_ary_len; close #781
Yukihiro Matz Matsumoto
2013-01-27
Fixes a number of "comparison between signed and unsigned" warnings.
Carson McDonald
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
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 al...
Masaki Muranaka
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
[prev]
[next]