summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-array-ext
AgeCommit message (Collapse)Author
2014-06-02Add Array#to_hMitsutaka Mimura
2014-05-25no one uses Array.try_convert, so removed it that discourages duck typing; ↵Yukihiro "Matz" Matsumoto
close #2317
2014-05-03use proper length for mrb_get_values_at()Yukihiro "Matz" Matsumoto
separate mrb_range_beg_len() into two: the one truncates range into the sequence size, and the one does not. #values_at uses the latter.
2014-05-03Merge branch 'values_at' of https://github.com/take-cheeze/mruby into ↵Yukihiro "Matz" Matsumoto
take-cheeze-values_at
2014-05-03Delete unused variable in Array#delete_ifJun Hiroe
2014-05-02Implement Struct#values_at and Array#values_at .take_cheeze
Add API `mrb_get_values_at()` to mruby/range.h .
2014-04-30remove trailing spacesNobuyoshi Nakada
2014-04-28Speed up Array#select! from O(n^2) to O(n).Utkarsh Kukreti
2014-04-27Add Array#select_bangJun Hiroe
2014-04-25Add Array#keep_ifJun Hiroe
2014-04-25resolve conflictYukihiro "Matz" Matsumoto
2014-04-24Add Array#delete_ifJun Hiroe
2014-04-24Array#fill use `kind_of?` instead of `respond_to?`ksss
2014-04-24Array#fill fix bug when argument use range objectksss
2014-04-24Add Array#bsearchJun Hiroe
2014-04-23Array#insert: simpler (and faster) implementation; ref #2107Yukihiro "Matz" Matsumoto
2014-04-23Add Array#insertJun Hiroe
2014-04-21 Add Array#reject_bangJun Hiroe
2014-04-21Add Array#delete_ifJun Hiroe
2014-04-18Add a block argument with Array#uniqJun Hiroe
2014-04-18Add a block argument with Array#uniq_bangJun Hiroe
2014-04-12Add Array#uniq_bang testJun Hiroe
2014-04-12Refactor array test to use assert_xxx methodJun Hiroe
2014-04-12Add Array#rotate_bangJun Hiroe
2014-04-11Array#rotateJun Hiroe
2014-04-03test fails when we don't have Enumerator.Tomoyuki Sahara
2014-03-30Fix method nameKazuki Tsujimoto
2014-03-29Add Array#fillJun Hiroe
2014-03-28Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-03-28Array#reverse_each should return Enumerator; ref #1968Yukihiro "Matz" Matsumoto
2014-03-28Add Array#fetchJun Hiroe
2014-03-24improve Enumerable#reverse_each to be efficientYukihiro "Matz" Matsumoto
2014-03-17move summary of mrbgems in default gembox to its spectake_cheeze
2014-01-30move Array#[] tests from mrbgems to test/t/array.rbYukihiro "Matz" Matsumoto
2014-01-29move range aware aget to array.c from mruby-array-ext gemYukihiro "Matz" Matsumoto
2014-01-10Added rewrite of Array#[] to mruby-array-ext gem, so that arrays can be slicedPaolo Bosetti
with Ranges (as a[1..-2])
2013-07-23"spec.author" is better for single-author gems.Tomoyuki Sahara
"spec.author=" expects a String represents a single author. "spec.authors=" expects an Array which is a list of multiple authors. http://guides.rubygems.org/specification-reference/
2013-05-14add comments for mruby-array-extskandhas
2013-04-25rename every ARGS_XXX to MRB_ARGS_XXX; ref #1206Yukihiro "Matz" Matsumoto
2013-04-11string interpolation (#{foo}) does stringify implicitly; no need to call #to_sYukihiro "Matz" Matsumoto
2013-04-11Fix TypeError messagesh2so5
2013-03-23Array bang methods should return nil if no change happenYukihiro Matz Matsumoto
2013-03-22add method(uniq, -, |, &, flatten, compact) and test of Array to mruby-array-extKouki Ooyatsu
2013-03-15rename methodskandhas
2013-03-15add mrbgem: mrb-array-extskandhas