るりまサーチ

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

別のキーワード

  1. _builtin puts
  2. csv puts
  3. stringio puts
  4. gzipwriter puts
  5. io puts

ライブラリ

検索結果

Kernel.#iterator? -> bool (18232.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 (32.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.
//}...