るりまサーチ

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

別のキーワード

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

ライブラリ

クラス

検索結果

SystemExit#success? -> bool (24314.0)

終了ステータスが正常終了を示す値ならば true を返します。

...値ならば true を返します。

大半のシステムでは、ステータス 0 が正常終了を表します。

例:

begin
exit true
rescue SystemExit => err
p err.success? # => true
end

begin
exit false
rescue SystemExit => err
p err.success? # => false
end...

Process::Status#success? -> bool (24302.0)

プロセスの終了状態が成功である場合に true を返します。 そうでない場合に false を返します。

...プロセスの終了状態が成功である場合に true を返します。
そうでない場合に false を返します。...