24件ヒット
[1-24件を表示]
(0.017秒)
検索結果
-
Kernel
. # iterator? -> bool (15119.0) -
メソッドにブロックが与えられていれば真を返します。
...す。
iterator? は (ブロックが必ずイテレートするとはいえないので)推奨されていないの
で block_given? を使ってください。
//emlist[例][ruby]{
def check
if block_given?
puts "Block is given."
else
puts "Block isn't given."
end
end
check{} #... -
Kernel
. # block _ given? -> bool (19.0) -
メソッドにブロックが与えられていれば真を返します。
...す。
iterator? は (ブロックが必ずイテレートするとはいえないので)推奨されていないの
で block_given? を使ってください。
//emlist[例][ruby]{
def check
if block_given?
puts "Block is given."
else
puts "Block isn't given."
end
end
check{} #...