るりまサーチ

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

別のキーワード

  1. matrix l
  2. kernel $-l
  3. _builtin $-l
  4. lupdecomposition l
  5. l

クラス

キーワード

検索結果

<< 1 2 3 ... > >>

Rational#*(other) -> Rational | Float (21225.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) # => (3/8)
//}...

Complex#*(other) -> Complex (21219.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)
//}...

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

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

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

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

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

BigDecimal#*(other) -> BigDecimal (21201.0)

積を計算します。

...積を計算します。

@param other self に掛ける数を指定します。

計算結果の精度についてはlib:bigdecimal#precisionを参照してください。...

OpenSSL::BN#*(other) -> OpenSSL::BN (21201.0)

自身と other の積を返します。

...自身と other の積を返します。

@param other かける数
@raise OpenSSL::BNError 計算時エラー
@see OpenSSL::BN#mod_mul...

絞り込み条件を変える

Rake::FileList#*(other) -> Array | String (21101.0)

Array#* と動作を合わせるために再定義しています。

...Array#* と動作を合わせるために再定義しています。


@see Array#*...

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

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

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

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

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

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

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

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

SingleForwardable#def_single_delegators(accessor, *methods) -> () (15303.0)

メソッドの委譲先をまとめて設定します。

...delegators は def_singleton_delegators の別名になります。

また、以下の 2 つの例は同じ意味です。

def_delegators :@records, :size, :<<, :map

def_delegator :@records, :size
def_delegator :@records, :<<
def_delegator :@records, :map

@see SingleForwardable#def_deleg...

SingleForwardable#def_delegators(accessor, *methods) -> () (12203.0)

メソッドの委譲先をまとめて設定します。

...delegators は def_singleton_delegators の別名になります。

また、以下の 2 つの例は同じ意味です。

def_delegators :@records, :size, :<<, :map

def_delegator :@records, :size
def_delegator :@records, :<<
def_delegator :@records, :map

@see SingleForwardable#def_deleg...

絞り込み条件を変える

Gem::Validator#alien -> [Gem::Validator.ErrorData] (9225.0)

Gem ディレクトリ内に存在するかもしれない以下のような問題を検証します。

...す。

*
Gem パッケージのチェックサムが正しいこと
*
それぞれの Gem に含まれるそれぞれのファイルがインストールされたバージョンであることの一貫性
*
Gem ディレクトリに関係の無いファイルが存在しないこと
*
キャッ...
<< 1 2 3 ... > >>