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
/
mrbgems
/
mruby-array-ext
/
mrblib
/
array.rb
Age
Commit message (
Expand
)
Author
2018-09-19
Removed `to_ary` conversion method.
Yukihiro "Matz" Matsumoto
2018-09-19
Removed `try_convert` method from Array and Hash.
Yukihiro "Matz" Matsumoto
2017-11-17
implement Array.transpose
Tomasz Dąbrowski
2017-10-20
Add `Array#{permutation,combination}.
Yukihiro "Matz" Matsumoto
2017-08-26
Replaced Array#each with while loop for performance reasons
Christopher Aue
2017-08-26
Removed unneeded block check in Array#uniq
Christopher Aue
2017-08-26
Reimplemented Array#flatten with #flatten!
Christopher Aue
2017-07-30
Improved speed of enumeration methods
Christopher Aue
2017-07-28
Added Array#bsearch_index
Christopher Aue
2017-07-28
Refactored Array#bsearch
Christopher Aue
2016-11-02
Update documentation of fetch
Lukas Elmer
2016-03-23
add #dig to Array,Hash and Struct
Yukihiro "Matz" Matsumoto
2015-11-24
add {Array|Hash|String}.try_convert
takahashim
2015-10-01
Array#index to take block; fix #2968 close #2970
Yukihiro "Matz" Matsumoto
2015-08-22
Use #nil? instead of == nil.
INOUE Yasuyuki
2014-05-03
Delete unused variable in Array#delete_if
Jun Hiroe
2014-04-30
remove trailing spaces
Nobuyoshi Nakada
2014-04-28
Speed up Array#select! from O(n^2) to O(n).
Utkarsh Kukreti
2014-04-27
Add Array#select_bang
Jun Hiroe
2014-04-25
Add Array#keep_if
Jun Hiroe
2014-04-25
resolve conflict
Yukihiro "Matz" Matsumoto
2014-04-24
Add Array#delete_if
Jun Hiroe
2014-04-24
Array#fill use `kind_of?` instead of `respond_to?`
ksss
2014-04-24
Array#fill fix bug when argument use range object
ksss
2014-04-24
Add Array#bsearch
Jun Hiroe
2014-04-23
Array#insert: simpler (and faster) implementation; ref #2107
Yukihiro "Matz" Matsumoto
2014-04-23
Add Array#insert
Jun Hiroe
2014-04-21
Add Array#reject_bang
Jun Hiroe
2014-04-21
Add Array#delete_if
Jun Hiroe
2014-04-18
Add a block argument with Array#uniq
Jun Hiroe
2014-04-18
Add a block argument with Array#uniq_bang
Jun Hiroe
2014-04-12
Add Array#rotate_bang
Jun Hiroe
2014-04-11
Array#rotate
Jun Hiroe
2014-03-30
Fix method name
Kazuki Tsujimoto
2014-03-29
Add Array#fill
Jun Hiroe
2014-03-28
Merge branch 'master' of github.com:mruby/mruby
Yukihiro "Matz" Matsumoto
2014-03-28
Array#reverse_each should return Enumerator; ref #1968
Yukihiro "Matz" Matsumoto
2014-03-28
Add Array#fetch
Jun Hiroe
2014-03-24
improve Enumerable#reverse_each to be efficient
Yukihiro "Matz" Matsumoto
2014-01-29
move range aware aget to array.c from mruby-array-ext gem
Yukihiro "Matz" Matsumoto
2014-01-10
Added rewrite of Array#[] to mruby-array-ext gem, so that arrays can be sliced
Paolo Bosetti
2013-05-14
add comments for mruby-array-ext
skandhas
2013-04-11
string interpolation (#{foo}) does stringify implicitly; no need to call #to_s
Yukihiro "Matz" Matsumoto
2013-04-11
Fix TypeError messages
h2so5
2013-03-23
Array bang methods should return nil if no change happen
Yukihiro Matz Matsumoto
2013-03-22
add method(uniq, -, |, &, flatten, compact) and test of Array to mruby-array-ext
Kouki Ooyatsu