るりまサーチ

最速Rubyリファレンスマニュアル検索!
208件ヒット [201-208件を表示] (0.078秒)

別のキーワード

  1. _builtin to_s
  2. openssl to_der
  3. openssl to_s
  4. _builtin to_a
  5. openssl to_pem

ライブラリ

クラス

モジュール

キーワード

検索結果

<< < 1 2 3 >>

StopIteration#result -> object (7.0)

この例外オブジェクトを発生させる原因となったメソッド等の返り値を返します。

...値を返します。

object = Object.new
def object.each
yield :yield1
yield :yield2
:each_returned
end

enumerator = object.to_enum

p enumerator.next #=> :yield1
p enumerator.next #=> :yield2

begin
enumerator.next
rescue StopIteration => error
p error.resul...
<< < 1 2 3 >>