るりまサーチ

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

別のキーワード

  1. fiddle build_ruby_platform
  2. rbconfig ruby
  3. fiddle ruby_free
  4. rake ruby
  5. rubygems/defaults ruby_engine

ライブラリ

検索結果

Kernel.#iterator? -> bool (21233.0)

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

...se を返します。

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

//emlist[例][ruby]{
def check
if block_given?
puts
"Block is given."
e
lse
puts
"Block isn't given."
e
n...
...d
e
nd
check{} #=> Block is given.
check #=> Block isn't given.
//}...

Kernel.#block_given? -> bool (6133.0)

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

...se を返します。

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

//emlist[例][ruby]{
def check
if block_given?
puts
"Block is given."
e
lse
puts
"Block isn't given."
e
n...
...d
e
nd
check{} #=> Block is given.
check #=> Block isn't given.
//}...