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