るりまサーチ

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

別のキーワード

  1. string []=
  2. string []
  3. string slice
  4. string slice!
  5. string gsub

検索結果

Psych::Nodes::Document#tag_directives -> [[String, String]] (6302.0)

tag directive の配列を返します。

...tag directive の配列を返します。

@see Psych::Nodes::Document#tag_directives=,
Psych::Nodes::Document.new...

Gem::Ext::Builder.redirector -> String (6201.0)

@todo

@todo

'2>&1' という文字列を返します。

Gem::Indexer#dest_directory -> String (6201.0)

インデックスを保存するディレクトリを返します。

インデックスを保存するディレクトリを返します。

Gem::Indexer#directory -> String (6201.0)

インデックスをビルドするための一時的なディレクトリを返します。

インデックスをビルドするための一時的なディレクトリを返します。

Gem::SourceIndex.installed_spec_directories -> [String] (6201.0)

gemspec ファイルがインストールされているディレクトリのリストを返します。

gemspec ファイルがインストールされているディレクトリのリストを返します。

@see Gem.#path

絞り込み条件を変える

Complex (12.0)

複素数を扱うクラスです。

...複素数を扱うクラスです。

Complex オブジェクトを作成するには、Kernel.#Complex、
Complex.rect、Complex.polar、Numeric#to_c、
String
#to_c のいずれかを使用します。

//emlist[Complex オブジェクトの作り方][ruby]{
Complex(1) # => (1+0i)
Complex...