486件ヒット
[1-100件を表示]
(0.024秒)
種類
- インスタンスメソッド (354)
- 特異メソッド (60)
- モジュール関数 (36)
- 定数 (24)
- クラス (12)
ライブラリ
- ビルトイン (180)
- benchmark (36)
- matrix (48)
- pathname (12)
- shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6) -
webrick
/ httpauth (24) -
webrick
/ httpauth / authenticator (12) -
webrick
/ httpauth / basicauth (24) -
webrick
/ httpauth / digestauth (12) -
webrick
/ httpauth / htdigest (48) -
webrick
/ httpauth / htpasswd (36) -
webrick
/ httpauth / userdb (36)
クラス
-
Benchmark
:: Tms (24) - Complex (48)
- File (36)
-
File
:: Stat (12) - Matrix (48)
- Numeric (60)
- Pathname (12)
- Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) -
WEBrick
:: HTTPAuth :: BasicAuth (24) -
WEBrick
:: HTTPAuth :: DigestAuth (12) -
WEBrick
:: HTTPAuth :: Htdigest (48) -
WEBrick
:: HTTPAuth :: Htpasswd (36)
モジュール
- Benchmark (12)
- FileTest (12)
-
WEBrick
:: HTTPAuth (24) -
WEBrick
:: HTTPAuth :: Authenticator (12) -
WEBrick
:: HTTPAuth :: UserDB (36)
キーワード
- FORMAT (24)
- Numeric (12)
- abs (12)
- abs2 (12)
-
basic
_ auth (12) -
delete
_ passwd (24) - each (12)
- format (12)
-
get
_ passwd (36) - imag (12)
- imaginary (12)
- integer? (12)
- magnitude (12)
-
make
_ passwd (36) -
proxy
_ basic _ auth (12) - real? (24)
- realdirpath (12)
- realm (24)
- realpath (12)
- rect (12)
- rectangular (12)
-
set
_ passwd (36) -
writable
_ real? (66)
検索結果
先頭5件
-
Numeric
# real -> Numeric (21231.0) -
自身を返します。
...す。
Numeric のサブクラスは、このメソッドを適切に再定義しなければなりません。
//emlist[例][ruby]{
10.real # => 10
-10.real # => -10
0.1.real # => 0.1
Rational(2, 3).real # => (2/3)
//}
@see Numeric#imag、Complex#real... -
Matrix
# real -> Matrix (21207.0) -
行列の実部を返します。
...行列の実部を返します。
//emlist[例][ruby]{
require 'matrix'
Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]]
# => 1+2i i 0
# 1 2 3
Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]].real
# => 1 0 0
# 1 2 3
//}... -
Complex
# real -> Numeric (18207.0) -
自身の実部を返します。
...自身の実部を返します。
//emlist[例][ruby]{
Complex(3, 2).real # => 3
//}... -
Pathname
# writable _ real? -> bool (12223.0) -
FileTest.writable_real?(self.to_s) と同じです。
...FileTest.writable_real?(self.to_s) と同じです。
@see FileTest.#writable_real?... -
File
. writable _ real?(path) -> bool (12217.0) -
FileTest.#writable_real? と同じです。
...FileTest.#writable_real? と同じです。
@param path パスを表す文字列を指定します。... -
File
:: Stat # writable _ real? -> bool (12207.0) -
実ユーザ/実グループによって書き込み可能な時に真を返します。
...実ユーザ/実グループによって書き込み可能な時に真を返します。
//emlist[][ruby]{
p File::Stat.new($0).writable_real? #=> true
//}... -
Shell
# writable _ real?(file) -> bool (12207.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#writable_real?... -
Shell
:: CommandProcessor # writable _ real?(file) -> bool (12207.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#writable_real?... -
Shell
:: Filter # writable _ real?(file) -> bool (12207.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#writable_real?... -
FileTest
. # writable _ real?(file) -> bool (12201.0) -
ファイルがカレントプロセスの実ユーザか実グループによって書き込み可能である時に真 を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
...込み可能である時に真
を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
@param file ファイル名を表す文字列を指定します。
@see FileTest.#writable?...