るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.088秒)
トップページ > クエリ:l[x] > クエリ:iterator?[x]

別のキーワード

  1. matrix l
  2. kernel $-l
  3. _builtin $-l
  4. lupdecomposition l
  5. l matrix

ライブラリ

モジュール

検索結果

Kernel.#iterator? -> bool (18207.0)

メソッドにブロックが与えられていれば真を返します。

...単に false を返します。

iterator?
は (ブロックが必ずイテレートするとはいえないので)推奨されていないの
で block_given? を使ってください。

//emlist[例][ruby]{
def check
if block_given?
puts "Block is given."
else
puts "Block isn't gi...
...ven."
end
end
check{} #=> Block is given.
check #=> Block isn't given.
//}...

Kernel.#block_given? -> bool (6107.0)

メソッドにブロックが与えられていれば真を返します。

...単に false を返します。

iterator?
は (ブロックが必ずイテレートするとはいえないので)推奨されていないの
で block_given? を使ってください。

//emlist[例][ruby]{
def check
if block_given?
puts "Block is given."
else
puts "Block isn't gi...
...ven."
end
end
check{} #=> Block is given.
check #=> Block isn't given.
//}...