るりまサーチ

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

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. kernel p
  5. rsa p

検索結果

<< 1 2 3 > >>

Complex#rect -> [Numeric, Numeric] (21126.0)

実部と虚部を配列にして返します。

...実部と虚部を配列にして返します。

//emlist[例][ruby]{
Complex(3).rect # => [3, 0]
Complex(3.5).rect # => [3.5, 0]
Complex(3, 2).rect # => [3, 2]
//}

@see Numeric#rect...

Gem::Indexer#make_temp_directories (12201.0)

一時的に使用するディレクトリを作成します。

一時的に使用するディレクトリを作成します。

Pathname#relative_path_from(base_directory) -> Pathname (9301.0)

base_directory から self への相対パスを求め、その内容の新しい Pathname オブジェクトを生成して返します。

...ase_directory から self への相対パスを求め、その内容の新しい Pathname
オブジェクトを生成して返します。

パス名の解決は文字列操作によって行われ、ファイルシステムをアクセス
しません。

self が相対パスなら base_directory...
...が絶対パスなら
base_directory も絶対パスでなければなりません。

@param base_directory ベースディレクトリを表す Pathname オブジェクトを指定します。

@raise ArgumentError Windows上でドライブが違うなど、base_directory から self への相対...
...パスが求められないときに例外が発生します。

//emlist[例][ruby]{
require 'pathname'

p
ath = Pathname.new("/tmp/foo")
base = Pathname.new("/tmp")

p
ath.relative_path_from(base) # => #<Pathname:foo>
//}...

Complex#rectangular -> [Numeric, Numeric] (9126.0)

実部と虚部を配列にして返します。

...実部と虚部を配列にして返します。

//emlist[例][ruby]{
Complex(3).rect # => [3, 0]
Complex(3.5).rect # => [3.5, 0]
Complex(3, 2).rect # => [3, 2]
//}

@see Numeric#rect...

Gem::Package::TarReader::Entry#directory? -> bool (9101.0)

自身がディレクトリであれば、真を返します。 そうでない場合は、偽を返します。

自身がディレクトリであれば、真を返します。
そうでない場合は、偽を返します。

絞り込み条件を変える

Net::FTP::MLSxEntry#directory? -> bool (9101.0)

エントリがディレクトリであれば true を返します。

...エントリがディレクトリであれば true を返します。

Net::FTP::MLSxEntry#type が "dir"、 "pdir"、 "cdir"、
のいずれかであれば true を返します。...

Net::FTP::MLSxEntry#directory_makable? -> bool (9101.0)

ディレクトリを作成可能ならば true を返します。

...ディレクトリを作成可能ならば true を返します。

Net::FTP#mkdir でディレクトリを作成可能かどうかを意味します。...

Pathname#directory? -> bool (9101.0)

FileTest.directory?(self.to_s) と同じです。

...FileTest.directory?(self.to_s) と同じです。


@see FileTest.#directory?...

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

tag directive の配列を返します。

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

@see Psych::Nodes::Document#tag_directives=,
P
sych::Nodes::Document.new...
<< 1 2 3 > >>