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
2020-10-12
Reorganize `Integer` system.
Yukihiro "Matz" Matsumoto
2020-10-12
Rename `MRB_TT_FIXNUM` to `MRB_TT_INTEGER`.
Yukihiro "Matz" Matsumoto
2020-10-12
Rename float configuration option names.
Yukihiro "Matz" Matsumoto
2020-10-12
Skip array embedding if `MRB_NO_BOXING` and `MRB_32BIT`; fix #4382
Yukihiro "Matz" Matsumoto
2020-10-12
Adjust PR #5060 to the latest `mruby3` branch.
Yukihiro "Matz" Matsumoto
2020-10-12
Use `mrb_field_write_barrier` instead of `mrb_write_barrier` for `push`.
Yukihiro "Matz" Matsumoto
2020-10-12
Skip `mrb_get_args()` in `mrb_ary_push()`.
Yukihiro "Matz" Matsumoto
2020-10-12
Avoid use of designated initializers to generate `irep` struct.
Yukihiro "Matz" Matsumoto
2020-10-12
Use `static const struct mrb_irep each_irep` to ininitalize `each`.
Yukihiro "Matz" Matsumoto
2020-10-12
Constify `irep` members.
Yukihiro "Matz" Matsumoto
2020-10-12
Use `mrb_funcall_id()` extensively.
Yukihiro "Matz" Matsumoto
2020-10-12
Use `MRB_QSYM()` instead of `MRB_OPSYM()`.
Yukihiro "Matz" Matsumoto
2020-10-12
Use `MRB_OPSYM()` instead of `mrb_intern_lit()`.
Yukihiro "Matz" Matsumoto
2020-10-12
Add `MRB_SYM()` for inline symbols.
Yukihiro "Matz" Matsumoto
2020-08-30
Fix `mrb_ary_splat()` to copy the array always.
Yukihiro "Matz" Matsumoto
2020-08-29
Fix the bug caused by `to_a` returning a frozen array.
Yukihiro "Matz" Matsumoto
2020-08-29
Fix `mrb_ary_splat` to copy the array; fix #5067
Yukihiro "Matz" Matsumoto
2020-07-22
Avoid using `mrb_ary_modify` from the internal function.
Yukihiro "Matz" Matsumoto
2020-07-22
Use `mrb_field_write_barrier` instead of `mrb_write_barrier` for `push`.
Yukihiro "Matz" Matsumoto
2020-06-22
Skip `mrb_get_args()` in `mrb_ary_{aget,aset}` unless necessary.
Yukihiro "Matz" Matsumoto
2020-06-20
Add `mrb_get_arg1()` that retrieves single (and only) argument.
Yukihiro "Matz" Matsumoto
2020-05-24
Do not destruct rest arguments for __send__
Yusuke Endoh
2020-04-24
Support `undef` for `mrb_ary_splice()` instead of `[]`
dearblue
2019-12-13
Fix arguments check to `Array#each`
KOBAYASHI Shuji
2019-11-08
Avoid crashing of `Array#unshift`; fix #4808
Yukihiro "Matz" Matsumoto
2019-09-18
Remove `mrb_get_args(mrb, "")`; ref 30f37872
KOBAYASHI Shuji
2019-09-14
Add a macro `mrb_frozen_p` that points to `MRB_FROZEN_P`.
Yukihiro "Matz" Matsumoto
2019-08-18
Prohibit changes to iseq in principle
dearblue
2019-08-17
Implement `Array#each` using inline mruby bytecode.
Yukihiro "Matz" Matsumoto
2019-08-05
Use new specifiers/modifiers of `mrb_vfromat()`
KOBAYASHI Shuji
2019-06-23
Fix argument specs to `Array`
KOBAYASHI Shuji
2019-05-25
Name the return value of `mrb_range_beg_len()`
dearblue
2019-04-09
Extract frozen checking to function
KOBAYASHI Shuji
2019-04-06
Move `Array#(append|prepend)` from core to `mruby-ary-ext`
KOBAYASHI Shuji
2018-12-15
Make mrb_ary_clear() function callable from C again
Takashi Sawanaka
2018-11-19
Removed `to_ary` conversion method.
Yukihiro "Matz" Matsumoto
2018-10-29
Add argument check to `Array#clear`; fix #4144
Yukihiro "Matz" Matsumoto
2018-09-18
Array size may be changed in `mrb_get_args()` reentry.
Yukihiro "Matz" Matsumoto
2018-09-07
Clear terminated space
dearblue
2018-04-25
Fix array replace leak error in mruby-uri.
Takeshi Watanabe
2018-04-18
`ary_dup()` should not use `ary_replace(); fix #4004
Yukihiro "Matz" Matsumoto
2018-04-18
A new function `ary_from_values()`; ref #4004
Yukihiro "Matz" Matsumoto
2018-04-17
Make `ary_replace()` to share entry buffers if possible.
Yukihiro "Matz" Matsumoto
2018-04-17
Make `ary_concat()` to replace the receiver when it is empty.
Yukihiro "Matz" Matsumoto
2018-04-17
Make `ary_replace()` to take `struct RArray*` argument.
Yukihiro "Matz" Matsumoto
2018-04-17
Implement `Array#__svalue` in C.
Yukihiro "Matz" Matsumoto
2018-03-19
Set array length after expanding capacity.
Takeshi Watanabe
2017-12-12
Modifying frozen objects will raise `FrozenError`.
Yukihiro "Matz" Matsumoto
2017-11-13
The number of argument should be retrieved by `mrb_get_argc`; fix #3848
Yukihiro "Matz" Matsumoto
2017-10-11
Add MRB_WITHOUT_FLOAT
YAMAMOTO Masaya
[next]