Created
December 5, 2012 09:40
-
-
Save ozgun/4214325 to your computer and use it in GitHub Desktop.
Niye çalışmaz?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Yukarıdaki kod çalıştırıldığında şöyle bir hata alınıyor. | |
| # NoMethodError: undefined method `[]=' for 1:Fixnum | |
| # from (pry):2:in `block in __pry__' | |
| [1,2].inject({}) do |memo, obj| | |
| memo[obj] = obj | |
| end | |
| # Ama aşağıdaki şekilde "merge" ile yazarsam çalışıyor ve şöyle bir çıktı üretiyor beklendiği üzere: {1=>1, 2=>2} | |
| [1,2].inject({}) do |memo, obj| | |
| memo.merge(obj => obj) | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment