るりまサーチ

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

別のキーワード

  1. bigdecimal/util to_d
  2. float to_d
  3. rsa d
  4. rsa d=
  5. matrix d

ライブラリ

クラス

キーワード

検索結果

<< 1 2 3 ... > >>

Gem::DependencyList#dependency_order -> [Gem::Specification] (24401.0)

依存する Gem の数が少ない順にソートされた Gem::Specification のリストを返します。

...If there are circular dependencies (yuck!), then gems will be
returned in order until only the circular dependents and anything
they reference are left. Then arbitrary gemspecs will be returned
until the circular dependency is broken, after which gems will be
returned in dependency order again....

Date#-(x) -> Rational | Date (21202.0)

x が日付オブジェクトなら、ふたつの差を Rational で返します。単位は日です。 あるいは x が数値ならば、self より x 日前の日付を返します。

x が日付オブジェクトなら、ふたつの差を Rational で返します。単位は日です。
あるいは
x が数値ならば、self より x 日前の日付を返します。

@param x 日数、あるいは日付オブジェクト
@raise TypeError x が数値でも日付オブジェクトでもない場合に発生します。

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

差を計算します。

...差を計算します。

@param other self から引く数を指定します。

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

Fiddle::Pointer#-(n) -> Fiddle::Pointer (21201.0)

自身のアドレスから n バイトを引いた新しい Pointer オブジェクトを返します。

...この返り値には、free 関数がセットされず、size は 0 とされます。

@param n アドレスの差分を整数で指定します。

例:
require 'fiddle'

s = 'abc'
cptr = Fiddle::Pointer[s]
cptr += 1
p cptr[0,1] #=> "b"
cptr -= 1
p cptr[0,1] #=> "a"...

Gem::Specification#development_dependencies -> Array (18401.0)

この Gem が依存している Gem のリストを返します。

この Gem が依存している Gem のリストを返します。

絞り込み条件を変える

Gem::DependencyInstaller#gather_dependencies -> Array (18301.0)

依存関係を無視するように指定されていない限り、インストールするように指定された Gem が依存している Gem の情報を集めて返します。

依存関係を無視するように指定されていない限り、インストールするように指定された
Gem が依存している Gem の情報を集めて返します。

Matrix::EigenvalueDecomposition#d -> Matrix (18202.0)

固有値を対角成分に並べた行列を返します。

固有値を対角成分に並べた行列を返します。

OpenSSL::PKey::RSA#d -> OpenSSL::BN (18202.0)

鍵の private exponent です。

鍵の private exponent です。

これは秘密鍵の一部です。

Gem::Installer#ensure_dependency(spec, dependency) -> true (12501.0)

インストールしようとしている Gem が依存関係を満たしている事を確認します。

...合は、例外 Gem::InstallError が発生します。

@param spec Gem::Specification のインスタンスを指定します。

@param dependency Gem::Dependency のインスタンスを指定します。

@raise Gem::InstallError 依存関係を満たしていない場合に発生します。...
<< 1 2 3 ... > >>