120件ヒット
[1-100件を表示]
(0.088秒)
種類
- インスタンスメソッド (72)
- クラス (36)
- 特異メソッド (12)
ライブラリ
- ビルトイン (48)
-
net
/ http (12) -
rubygems
/ dependency _ list (12) -
win32
/ registry (48)
クラス
-
Gem
:: DependencyList (12) - Integer (36)
-
Win32
:: Registry :: PredefinedKey (36)
キーワード
- HTTPRedirection (12)
- Numeric (12)
- PredefinedKey (12)
- class (12)
- close (12)
- new (12)
- next (12)
-
spec
_ predecessors (12) - succ (12)
検索結果
先頭5件
-
Integer
# pred -> Integer (24213.0) -
self から -1 した値を返します。
...self から -1 した値を返します。
//emlist[][ruby]{
1.pred #=> 0
(-1).pred #=> -2
//}
@see Integer#next... -
Net
:: HTTPRedirection (18000.0) -
HTTP レスポンス 3xx (Redirection) を表現するクラスです。
...HTTP レスポンス 3xx (Redirection) を表現するクラスです。
リクエストが正常に受信しましたが、処理を完了するためには
さらなる動作が必要なことを表します。... -
Win32
:: Registry :: PredefinedKey (15000.0) -
-
Gem
:: DependencyList # spec _ predecessors -> Hash (12200.0) -
@todo ???
...@todo ???
Return a hash of predecessors. <tt>result[spec]</tt> is an
Array of gemspecs that have a dependency satisfied by the named
spec.... -
Win32
:: Registry :: PredefinedKey # class (9000.0) -
@todo
@todo -
Win32
:: Registry :: PredefinedKey # close (9000.0) -
@todo
@todo -
Win32
:: Registry :: PredefinedKey . new(hkey , keyname) (9000.0) -
@todo
@todo -
Numeric (6072.0)
-
数値を表す抽象クラスです。Integer や Float などの数値クラス は Numeric のサブクラスとして実装されています。
...を表す抽象クラスです。Integer や Float などの数値クラス
は Numeric のサブクラスとして実装されています。
演算や比較を行うメソッド(+, -, *, /, <=>)は Numeric のサブクラスで定義されま
す。Numeric で定義されているメソッドは......て定義されるものがほとんどです。
つまり Numeric で定義されているメソッドは、Numeric のサブクラスとして新たに数値クラスを定義した時に、
演算メソッド(+, -, *, /, %, <=>, coerce)だけを定義すれば、数値クラスのそのほかの......ord | - o - - - - -
phase | o - - - o - o
polar | o - - - - - o
pred |......- o
polar | o - - - o
positive? | o - o o -
pred | - o - - -
prev_float | - -... -
Integer
# next -> Integer (3106.0) -
self の次の整数を返します。
...self の次の整数を返します。
//emlist[][ruby]{
1.next #=> 2
(-1).next #=> 0
1.succ #=> 2
(-1).succ #=> 0
//}
@see Integer#pred...