るりまサーチ

最速Rubyリファレンスマニュアル検索!
33件ヒット [1-33件を表示] (0.026秒)
トップページ > クエリ:self[x] > クラス:Process::Status[x]

別のキーワード

  1. object yield_self
  2. _builtin yield_self
  3. _builtin self
  4. tracepoint self
  5. codeobject document_self

ライブラリ

キーワード

検索結果

Process::Status#&(other) -> Integer (17.0)

self.to_i & other と同じです。 このメソッドは後方互換性のためにあります。

...
self
.to_i & other と同じです。
このメソッドは後方互換性のためにあります。

@param other 自身との & 演算をしたい整数を指定します。...

Process::Status#>>(num) -> Integer (17.0)

self.to_i >> num と同じです。

...
self
.to_i >> num と同じです。

@param num 整数を指定します。

fork { exit 99 } #=> 26563
Process.wait #=> 26563
$?.to_i #=> 25344
$? >> 8 #=> 99...

Process::Status#==(other) -> bool (7.0)

同じステータスの場合に真を返します。

...同じステータスの場合に真を返します。

other が数値の場合、self.to_i との比較が行われます。こ
れは後方互換性のためです。

@param other 自身と比較したいオブジェクトを指定します。...