@@ -327,7 +327,7 @@ Comparison:
327
327
328
328
##### ` Array#bsearch ` vs ` Array#find ` [ code] ( code/array/bsearch-vs-find.rb )
329
329
330
- ** WARNING:** ` bsearch ` ONLY works on * sorted array* . More details please see [ #29 ] ( https://github.com/JuanitoFatas /fast-ruby/issues/29 ) .
330
+ ** WARNING:** ` bsearch ` ONLY works on * sorted array* . More details please see [ #29 ] ( https://github.com/fastruby /fast-ruby/issues/29 ) .
331
331
332
332
```
333
333
$ ruby -v code/array/bsearch-vs-find.rb
@@ -467,7 +467,7 @@ Comparison:
467
467
##### ` Array#new ` vs ` Fixnum#times + map ` [ code] ( code/array/array-new-vs-fixnum-times-map.rb )
468
468
469
469
Typical slowdown is 40-60% depending on the size of the array. See the corresponding
470
- [ pull request] ( https://github.com/JuanitoFatas /fast-ruby/pull/91/ ) for performance characteristics.
470
+ [ pull request] ( https://github.com/fastruby /fast-ruby/pull/91/ ) for performance characteristics.
471
471
472
472
```
473
473
ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin15]
@@ -766,7 +766,7 @@ Comparison:
766
766
767
767
[ Ruby 2.3 introduced ` Hash#dig ` ] ( http://ruby-doc.org/core-2.3.0/Hash.html#method-i-dig ) which is a readable
768
768
and performant option for retrieval from a nested hash, returning ` nil ` if an extraction step fails.
769
- See [ #102 (comment)] ( https://github.com/JuanitoFatas /fast-ruby/pull/102#issuecomment-198827506 ) for more info.
769
+ See [ #102 (comment)] ( https://github.com/fastruby /fast-ruby/pull/102#issuecomment-198827506 ) for more info.
770
770
771
771
```
772
772
$ ruby -v code/hash/dig-vs-\[\]-vs-fetch.rb
@@ -819,7 +819,7 @@ Comparison:
819
819
> Note that the speedup in the block version comes from avoiding repeated <br >
820
820
> construction of the argument. If the argument is a constant, number symbol or <br >
821
821
> something of that sort the argument version is actually slightly faster <br >
822
- > See also [ #39 (comment)] ( https://github.com/JuanitoFatas /fast-ruby/issues/39#issuecomment-103989335 )
822
+ > See also [ #39 (comment)] ( https://github.com/fastruby /fast-ruby/issues/39#issuecomment-103989335 )
823
823
824
824
```
825
825
$ ruby -v code/hash/fetch-vs-fetch-with-block.rb
@@ -972,7 +972,7 @@ Comparison:
972
972
##### ` {}#merge!(Hash) ` vs ` Hash#merge({}) ` vs ` Hash#dup#merge!({}) ` [ code] ( code/hash/merge-bang-vs-merge-vs-dup-merge-bang.rb )
973
973
974
974
> When we don't want to modify the original hash, and we want duplicates to be created <br >
975
- > See [ #42 ] ( https://github.com/JuanitoFatas /fast-ruby/pull/42#issue-93502261 ) for more details.
975
+ > See [ #42 ] ( https://github.com/fastruby /fast-ruby/pull/42#issue-93502261 ) for more details.
976
976
977
977
```
978
978
$ ruby -v code/hash/merge-bang-vs-merge-vs-dup-merge-bang.rb
@@ -1283,7 +1283,7 @@ Comparison:
1283
1283
String#match: 2362314.8 i/s - 2.96x slower
1284
1284
```
1285
1285
1286
- See [ #59 ] ( https://github.com/JuanitoFatas /fast-ruby/pull/59 ) and [ #62 ] ( https://github.com/JuanitoFatas /fast-ruby/pull/62 ) for discussions.
1286
+ See [ #59 ] ( https://github.com/fastruby /fast-ruby/pull/59 ) and [ #62 ] ( https://github.com/fastruby /fast-ruby/pull/62 ) for discussions.
1287
1287
1288
1288
1289
1289
##### ` String#gsub ` vs ` String#sub ` vs ` String#[]= ` [ code] ( code/string/gsub-vs-sub.rb )
@@ -1523,19 +1523,19 @@ Comparison:
1523
1523
1524
1524
## Less idiomatic but with significant performance ruby
1525
1525
1526
- Checkout: https://github.com/JuanitoFatas /fast-ruby/wiki/Less-idiomatic-but-with-significant-performance-difference
1526
+ Checkout: https://github.com/fastruby /fast-ruby/wiki/Less-idiomatic-but-with-significant-performance-difference
1527
1527
1528
1528
1529
1529
## Submit New Entry
1530
1530
1531
- Please! [ Edit this README.md] ( https://github.com/JuanitoFatas /fast-ruby/edit/master /README.md ) then [ Submit a Awesome Pull Request] ( https://github.com/JuanitoFatas /fast-ruby/pulls ) !
1531
+ Please! [ Edit this README.md] ( https://github.com/fastruby /fast-ruby/edit/main /README.md ) then [ Submit a Awesome Pull Request] ( https://github.com/fastruby /fast-ruby/pulls ) !
1532
1532
1533
1533
1534
1534
## Something went wrong
1535
1535
1536
1536
Code example is wrong? :cry : Got better example? :heart_eyes : Excellent!
1537
1537
1538
- [ Please open an issue] ( https://github.com/JuanitoFatas /fast-ruby/issues/new ) or [ Open a Pull Request] ( https://github.com/JuanitoFatas /fast-ruby/pulls ) to fix it.
1538
+ [ Please open an issue] ( https://github.com/fastruby /fast-ruby/issues/new ) or [ Open a Pull Request] ( https://github.com/fastruby /fast-ruby/pulls ) to fix it.
1539
1539
1540
1540
Thank you in advance! :wink : :beer :
1541
1541
0 commit comments