323件ヒット
[1-100件を表示]
(0.095秒)
別のキーワード
ライブラリ
- ビルトイン (167)
- bigdecimal (12)
-
json
/ add / exception (12) -
net
/ http (12) -
rake
/ rdoctask (12) - rss (48)
クラス
- BigDecimal (12)
- Bignum (3)
-
CGI
:: Cookie (24) - Exception (32)
- Integer (12)
- Module (12)
- NameError (12)
- NoMethodError (12)
-
RDoc
:: Options (24) -
RSS
:: Maker :: ChannelBase :: CategoriesBase :: CategoryBase (24) -
RSS
:: Rss :: Channel :: Item :: Category (24) -
Rake
:: RDocTask (12) -
RubyVM
:: InstructionSequence (24) - Thread (36)
-
Thread
:: Backtrace :: Location (36) -
WEBrick
:: Cookie (12)
モジュール
-
Net
:: HTTPHeader (12)
キーワード
- args (12)
-
backtrace
_ locations (24) -
base
_ label (24) - domain (48)
- domain= (36)
- inspect (12)
- label (12)
-
main
_ page (12) -
main
_ page= (12) -
main
_ type (12) - raise (12)
- remainder (27)
-
set
_ backtrace (12) -
to
_ json (12) -
to
_ s (24) - using (12)
検索結果
先頭5件
-
Rake
:: RDocTask # main -> String (18202.0) -
メインとして使用されるファイル名を返します。
メインとして使用されるファイル名を返します。 -
RDoc
:: Options # main _ page -> String | nil (12218.0) -
コマンドライン引数の --main オプションで指定したファイル名、クラス/モ ジュール名を返します。
...コマンドライン引数の --main オプションで指定したファイル名、クラス/モ
ジュール名を返します。
指定しなかった場合は nil を返します。... -
RDoc
:: Options # main _ page=(val) (12218.0) -
コマンドライン引数の --main オプションと同様の指定を行います。
...コマンドライン引数の --main オプションと同様の指定を行います。
@param val 設定するファイル名、クラス/モジュール名を文字列で指定します。... -
RSS
:: Maker :: ChannelBase :: CategoriesBase :: CategoryBase # domain (12101.0) -
@todo
@todo -
RSS
:: Maker :: ChannelBase :: CategoriesBase :: CategoryBase # domain=() (12101.0) -
@todo
@todo -
BigDecimal
# remainder(n) -> BigDecimal (9201.0) -
self を n で割った余りを返します。
...//emlist[][ruby]{
require 'bigdecimal'
x = BigDecimal((2**100).to_s)
x.remainder(3).to_i # => 1
(-x).remainder(3).to_i # => -1
x.remainder(-3).to_i # => 1
(-x).remainder(-3).to_i # => -1
//}
戻り値は self と同じ符号になります。これは BigDecimal#% とは異な
る点に......注意してください。詳細は Numeric#%、
Numeric#remainder を参照して下さい。... -
Bignum
# remainder(other) -> Fixnum | Bignum | Float (9201.0) -
self を other で割った余り r を返します。
...self を other で割った余り r を返します。
r の符号は self と同じになります。
@param other self を割る数。
@see Bignum#divmod, Bignum#modulo, Numeric#modulo... -
CGI
:: Cookie # domain -> String (9201.0) -
クッキーを適用するドメインを返します。
クッキーを適用するドメインを返します。 -
CGI
:: Cookie # domain=(value) (9101.0) -
クッキーを適用するドメインをセットします。
クッキーを適用するドメインをセットします。
@param value ドメインを指定します。 -
Integer
# remainder(other) -> Numeric (9101.0) -
self を other で割った余り r を返します。
...//emlist[][ruby]{
5.remainder(3) # => 2
-5.remainder(3) # => -2
5.remainder(-3) # => 2
-5.remainder(-3) # => -2
-1234567890987654321.remainder(13731) # => -6966
-1234567890987654321.remainder(13731.24) # => -9906.22531493148
//}
@see Integer#divmod, Integer#modulo, Numeric#modul...