るりまサーチ

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

別のキーワード

  1. _builtin *
  2. matrix *
  3. array *
  4. vector *
  5. bigdecimal *

クラス

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

String#*(times) -> String (18139.0)

文字列の内容を times 回だけ繰り返した新しい文字列を作成して返します。

...ます。

@
param times 整数
@
return self を times 回繰り返した新しい文字列

@
raise ArgumentError 引数に負数を指定したときに発生します。

//emlist[例][ruby]{
p "str" * 3 # => "strstrstr"

str = "abc"
p str * 4 # => "abcabcabcabc"
p str * 0 # => ""...

Rational#*(other) -> Rational | Float (18133.0)

積を計算します。

...計算します。

@
param other 自身に掛ける数

other に Float を指定した場合は、計算結果を Float で返しま
す。

//emlist[例][ruby]{
r = Rational(3, 4)
r * 2 # => (3/2)
r * 4 # => (3/1)
r * 0.5 # => 0.375
r * Rational(1, 2) #...

Array#*(times) -> Array (18130.0)

配列の内容を times 回 繰り返した新しい配列を作成して返します。 値はコピーされないことに注意してください。

...いことに注意してください。

@
param times 繰り返したい回数を整数で指定します。
整数以外のオブジェクトを指定した場合は to_int メソッドによ
る暗黙の型変換を試みます。

@
raise TypeError 引数に整数以外...
...の(暗黙の型変換が行えない)オブジェクトを
指定した場合に発生します。

@
raise ArgumentError 引数に負の数を指定した場合に発生します。

//emlist[例][ruby]{
p [1, 2, 3] * 3 #=> [1, 2, 3, 1, 2, 3, 1, 2, 3]
//}...

Complex#*(other) -> Complex (18127.0)

積を計算します。

...積を計算します。

@
param other 自身に掛ける数

//emlist[例][ruby]{
Complex(1, 2) * 2 # => (2+4i)
Complex(1, 2) * Complex(2, 3) # => (-4+7i)
Complex(1, 2) * Rational(1, 2) # => ((1/2)+(1/1)*i)
//}...

Array#*(sep) -> String (18125.0)

指定された sep を間にはさんで連結した文字列を生成して返します。Array#join(sep) と同じ動作をします。

...ep) と同じ動作をします。

@
param sep 文字列を指定します。
文字列以外のオブジェクトを指定した場合は to_str メソッドによ
る暗黙の型変換を試みます。

//emlist[例][ruby]{
p [1,2,3] * ","
# => "1,2,3"
//}

@
see Array#join...

絞り込み条件を変える

Integer#*(other) -> Numeric (18121.0)

算術演算子。積を計算します。

...算術演算子。積を計算します。

@
param other 二項演算の右側の引数(対象)
@
return 計算結果

//emlist[][ruby]{
2 * 3 # => 6
//}...

Bignum#*(other) -> Fixnum | Bignum | Float (18115.0)

算術演算子。積を計算します。

...算術演算子。積を計算します。

@
param other 二項演算の右側の引数(対象)
@
return 計算結果...

Fixnum#*(other) -> Fixnum | Bignum | Float (18115.0)

算術演算子。積を計算します。

...算術演算子。積を計算します。

@
param other 二項演算の右側の引数(対象)
@
return 計算結果...

Float#*(other) -> Float (18115.0)

算術演算子。積を計算します。

...算術演算子。積を計算します。

@
param other 二項演算の右側の引数(対象)

//emlist[例][ruby]{
# 積
2.4 * 3 # => 7.2
//}...

Integer#**(other) -> Numeric (6139.0)

算術演算子。冪(べき乗)を計算します。

...算子。冪(べき乗)を計算します。

@
param other 二項演算の右側の引数(対象)
@
param modulo 指定すると、計算途中に巨大な値を生成せずに (self**other) % modulo と同じ結果を返します。
@
return 計算結果
@
raise TypeError 2引数 pow で Integer 以...
...発生します。
@raise RangeError 2引数 pow で other に負の数を指定した場合に発生します。

//emlist[][ruby]{
2 ** 3 # => 8
2 ** 0 # => 1
0 ** 0 # => 1
3.pow(3, 8) # => 3
3.pow(3, -8) # => -5
3.pow(2, -2) # => -1
-3.pow(3, 8) # => 5
-3.pow(3, -8) # => -3
5.pow(2, -8) #...
...数になりそうなとき、警告を出したうえで Float::INFINITY を返します。

//emlist[計算を放棄して Float::INFINITY を返す例][ruby]{
p 100**9999999
# => warning: in a**b, b may be too big
# Infinity
//}

判定の閾値は変わりえます。

@
see BigDecimal#power...

絞り込み条件を変える

Bignum#**(other) -> Fixnum | Bignum | Float (6115.0)

算術演算子。冪(べき乗)を計算します。

...算術演算子。冪(べき乗)を計算します。

@
param other 二項演算の右側の引数(対象)
@
return 計算結果

2 ** 3 # => 8
2 ** 0 # => 1
0 ** 0 # => 1...

Fixnum#**(other) -> Fixnum | Bignum | Float (6115.0)

算術演算子。冪(べき乗)を計算します。

...算術演算子。冪(べき乗)を計算します。

@
param other 二項演算の右側の引数(対象)
@
return 計算結果

2 ** 3 # => 8
2 ** 0 # => 1
0 ** 0 # => 1...
<< 1 2 3 ... > >>