mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
benchmarks for String#scan
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59494 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9135c8c322
commit
c751bad51d
2 changed files with 4 additions and 0 deletions
2
benchmark/bm_string_scan_re.rb
Normal file
2
benchmark/bm_string_scan_re.rb
Normal file
|
@ -0,0 +1,2 @@
|
|||
str = Array.new(1_000, 'abc').join(',')
|
||||
1_000.times { str.scan(/abc/) }
|
2
benchmark/bm_string_scan_str.rb
Normal file
2
benchmark/bm_string_scan_str.rb
Normal file
|
@ -0,0 +1,2 @@
|
|||
str = Array.new(1_000, 'abc').join(',')
|
||||
1_000.times { str.scan('abc') }
|
Loading…
Reference in a new issue