ブロックを通過する最初の「n」エントリを取得したい
a = 1..100_000_000 # Basically a long array
# This iterates over the whole array -- no good
b = a.select{|x| x.expensive_operation?}.take(n)
'高価な'条件が真であるn個のエントリを取得したら、反復を短絡させたい。
何を指示してるんですか?take_whileとnのカウントを維持しますか?
# This is the code i have; which i think can be written better, but how?
a = 1..100_000_000 # Basically a long array
n = 20
i = 0
b = a.take_while do |x|
((i < n) && (x.expensive_operation?)).tap do |r|
i += 1
end
end