RailsのHash#slice!
から。
def slice!(*keys) omit = slice(*self.keys - keys) # keysは登録ハッシュを出すメソッド。ここでは、[:if, :unless, :on..]などが入っている。*self.keysは引数のこと?引いて…つまりこれらのオプションは無視する、と。 hash = slice(*keys) hash.default = default # defaultも保持する必要がある! hash.default_proc = default_proc if default_proc # procをよくわかっていない。 replace(hash) # ここがメイン。 omit # 画面出力用。副作用にすぎない。 end
slice!
の例
hash = { a: 1, b: 2, c: 3 } hash.slice!(:a, :b) hash # => {:a=>1, :b=>2}
要するに配列の対応したやつだけ取り出すメソッド。!は破壊的なことをしめす。hash自体が変化している。
String#camelize
def camelize(first_letter = :upper) case first_letter when :upper ActiveSupport::Inflector.camelize(self, true) when :lower ActiveSupport::Inflector.camelize(self, false) else raise ArgumentError, "Invalid option, use either :upper or :lower." end end
例
"mozilla_firefox".camelize # => MozillaFirefox # upper camel case というらしい。 "mozilla_firefox".camelize(:lower) # => mozillaFirefox # lower camel case というらしい。最初だけ小文字。
:upper
か :lower
以外を入れたとき、ちゃんとエラーメッセージが返ってきて親切。
default-proc
そもそもprocがわかってない。
h = Hash.new { |a| h[a] = a*a } # defaultを定義 p = h.default_proc p.call(2) # => 4 p.call(10) # => 100 h # => {2=>4, 10=>100}
h = Hash.new { 3 } # defaultを定義 p = h.default_proc p.call # => 3
hash#default
https://www.includehelp.com/ruby/hash-default_proc-method-with-example.aspx
hash = Hash.new(33) # => {} hash # => {} hash[:a] # => 33 hash.default # => 33