るりまサーチ

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

別のキーワード

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

ライブラリ

クラス

キーワード

検索結果

<< < 1 2 3 > >>

Rational#round(precision = 0) -> Integer | Rational (107.0)

自身ともっとも近い整数を返します。

...り上げされます。

@param precision 計算結果の精度

@raise TypeError precision に整数以外のものを指定すると発生します。

//emlist[例][ruby]{
Rational(3).round # => 3
Rational(2, 3).round # => 1
Rational(-3, 2).round # => -2
//}

p
recision を指定した場合...
...近い整
数か Rational を返します。

//emlist[例][ruby]{
Rational('-123.456').round(+1) # => (-247/2)
Rational('-123.456').round(+1).to_f # => -123.5
Rational('-123.456').round(0) # => -123
Rational('-123.456').round(-1) # => -120
Rational('-123.456').round(-2) # => -1...

Rational#truncate(precision = 0) -> Rational | Integer (107.0)

小数点以下を切り捨てて値を整数に変換します。

...小数点以下を切り捨てて値を整数に変換します。

@param precision 計算結果の精度

@raise TypeError precision に整数以外のものを指定すると発生します。

//emlist[例][ruby]{
Rational(2, 3).to_i # => 0
Rational(3).to_i # => 3
Rational(300.6).to_i #...
...> 1
Rational(-31, 2).to_i # => -15
//}

p
recision を指定した場合は指定した桁数で切り捨てた整数か
Rational を返します。

//emlist[例][ruby]{
Rational('-123.456').truncate(+1) # => (-617/5)
Rational('-123.456').truncate(+1).to_f # => -123.4
Rational('-123.456').tru...

String#oct -> Integer (73.0)

文字列を 8 進文字列であると解釈して、整数に変換します。

...//emlist[例][ruby]{
p
"10".oct # => 8
p
"010".oct # => 8
p
"8".oct # => 0
//}

oct は文字列の接頭辞 ("0", "0b", "0B", "0x", "0X") に応じて
8 進以外の変換も行います。

//emlist[例][ruby]{
p
"0b10".oct # => 2
p
"10".oct # => 8
p
"010".oct # => 8
p
"0x10".oct # => 16...
...

//emlist[例][ruby]{
p
"-010".oct # => -8
p
"-0x10".oct # => -16
p
"-0b10".oct # => -2

p
"1_0_1x".oct # => 65
//}

@see String#hex, String#to_i, String#to_f,
Kernel.#Integer, Kernel.#Float

逆に、数値を文字列に変換するにはKernel.#sprintf,
String#%, Integer#to_s...

String#hex -> Integer (55.0)

文字列に 16 進数で数値が表現されていると解釈して整数に変換します。 接頭辞 "0x", "0X" とアンダースコアは無視されます。 文字列が [_0-9a-fA-F] 以外の文字を含むときはその文字以降を無視します。

...返します。

//emlist[例][ruby]{
p
"10".hex # => 16
p
"ff".hex # => 255
p
"0x10".hex # => 16
p
"-0x10".hex # => -16

p
"xyz".hex # => 0
p
"10z".hex # => 16
p
"1_0".hex # => 16

p
"".hex # => 0
//}

@see String#oct, String#to_i, String#to_f,
Kernel.#Integer, Kernel.#Float...
...このメソッドの逆に数値を文字列に変換するには
Kernel.#sprintf, String#%,
Integer#to_s
などを使ってください。...

Time#to_i -> Integer (31.0)

起算時からの経過秒数を整数で返します。

...起算時からの経過秒数を整数で返します。

//emlist[][ruby]{
t = Time.local(2000,1,2,3,4,5,6)
p
t # => 2000-01-02 03:04:05 +0900
p
"%10.6f" % t.to_f # => "946749845.000006"
p
t.to_i # => 946749845
p
t.tv_sec # => 946749845
//}...

絞り込み条件を変える

Time#tv_sec -> Integer (31.0)

起算時からの経過秒数を整数で返します。

...起算時からの経過秒数を整数で返します。

//emlist[][ruby]{
t = Time.local(2000,1,2,3,4,5,6)
p
t # => 2000-01-02 03:04:05 +0900
p
"%10.6f" % t.to_f # => "946749845.000006"
p
t.to_i # => 946749845
p
t.tv_sec # => 946749845
//}...

Time#nsec -> Integer (25.0)

時刻のナノ秒の部分を整数で返します。

...返します。

//emlist[][ruby]{
t = Time.local(2000,1,2,3,4,5,6)
p
"%10.9f" % t.to_f # => "946749845.000005960"
p
t.nsec # => 6000
//}

IEEE 754 浮動小数点数で表現できる精度が違うため、Time#to_fの最小
の桁とnsecの最小の桁は異なります。nsecで...

Time#subsec -> Integer | Rational (25.0)

時刻を表す分数を返します。

...す。

Rational を返す場合があります。

//emlist[][ruby]{
t = Time.local(2000,1,2,3,4,5,6)
p
"%10.9f" % t.to_f # => "946749845.000005960"
p
t.subsec #=> (3/500000)
//}

to_f
の値と subsec の値の下のほうの桁の値は異なる場合があります。
というの...

Time#tv_nsec -> Integer (25.0)

時刻のナノ秒の部分を整数で返します。

...返します。

//emlist[][ruby]{
t = Time.local(2000,1,2,3,4,5,6)
p
"%10.9f" % t.to_f # => "946749845.000005960"
p
t.nsec # => 6000
//}

IEEE 754 浮動小数点数で表現できる精度が違うため、Time#to_fの最小
の桁とnsecの最小の桁は異なります。nsecで...
<< < 1 2 3 > >>