Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Rubyでは、配列のすべての要素にマップ関数を適用できます。
@files.map { |f| f.read) }
構文糖衣があります:
@files.map(&:read)
に相当するものはありますか
@files.map { |f| read(f) }
それは、上記のように、より簡潔ですか?
あなたはこれを行うことができます
@files.map(&method(:read))
ただし、パフォーマンスについては注意してください。