1. 06 Sep, 2016 4 commits
  2. 05 Sep, 2016 4 commits
  3. 04 Sep, 2016 1 commit
  4. 02 Sep, 2016 1 commit
  5. 31 Aug, 2016 1 commit
  6. 30 Aug, 2016 2 commits
  7. 20 Aug, 2016 3 commits
  8. 19 Aug, 2016 4 commits
  9. 17 Aug, 2016 2 commits
  10. 16 Aug, 2016 2 commits
  11. 13 Aug, 2016 2 commits
  12. 12 Aug, 2016 2 commits
  13. 11 Aug, 2016 1 commit
  14. 08 Aug, 2016 3 commits
  15. 02 Aug, 2016 1 commit
  16. 01 Aug, 2016 1 commit
  17. 31 Jul, 2016 2 commits
  18. 28 Jul, 2016 1 commit
  19. 27 Jul, 2016 3 commits
    • Malizia R's avatar
      Update mirb.c · 1c7572bc
      Malizia R authored
      1c7572bc
    • Yukihiro "Matz" Matsumoto's avatar
      Merge pull request #3185 from kou/string-reduce-needless-array · 2b4ed40f
      Yukihiro "Matz" Matsumoto authored
      Reduce needless Array generation in some String methods
      2b4ed40f
    • Kouhei Sutou's avatar
      Reduce needless Array generation in some String methods · 6bb0775d
      Kouhei Sutou authored
      Here are some benchmarks:
      
      each_char:
      
          # /tmp/each_char.rb
          a = "a" * 1000000
          a.each_char do |x|
          end
      
      Without this change:
      
          % time bin/mruby /tmp/each_char.rb
          bin/mruby /tmp/each_char.rb  1.07s user 0.02s system 99% cpu 1.088 total
      
      With this change:
      
          % time bin/mruby /tmp/each_char.rb
          bin/mruby /tmp/each_char.rb  0.52s user 0.01s system 99% cpu 0.530 total
      
      2 times faster with this change.
      
      codepoints:
      
          # /tmp/codepoints.rb
          a = "a" * 1000000
          a.codepoints do |x|
          end
      
      Without this change:
      
          % time bin/mruby /tmp/codepoints.rb
          bin/mruby /tmp/codepoints.rb  1.16s user 0.05s system 99% cpu 1.216 total
      
      With this change:
      
          % time bin/mruby /tmp/codepoints.rb
          bin/mruby /tmp/codepoints.rb  0.56s user 0.02s system 99% cpu 0.589 total
      6bb0775d