318件ヒット
[1-100件を表示]
(0.093秒)
ライブラリ
- ビルトイン (120)
- benchmark (12)
- matrix (12)
- pathname (12)
- shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6) -
webrick
/ httpauth / authenticator (12) -
webrick
/ httpauth / basicauth (12) -
webrick
/ httpauth / htdigest (48) -
webrick
/ httpauth / htpasswd (36) -
webrick
/ httpauth / userdb (36)
クラス
-
Benchmark
:: Tms (12) - Complex (48)
-
File
:: Stat (12) - Matrix (12)
- Numeric (60)
- Pathname (12)
- Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) -
WEBrick
:: HTTPAuth :: BasicAuth (12) -
WEBrick
:: HTTPAuth :: Htdigest (48) -
WEBrick
:: HTTPAuth :: Htpasswd (36)
モジュール
キーワード
- abs (12)
- abs2 (12)
-
delete
_ passwd (24) - each (12)
-
executable
_ real? (42) - format (12)
-
get
_ passwd (36) - imag (12)
- imaginary (12)
- integer? (12)
- magnitude (12)
-
make
_ passwd (12) - real? (12)
- realm (24)
- rectangular (12)
-
set
_ passwd (36)
検索結果
先頭5件
-
Numeric
# real -> Numeric (21232.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... -
Complex
# real -> Numeric (18208.0) -
自身の実部を返します。
...自身の実部を返します。
//emlist[例][ruby]{
Complex(3, 2).real # => 3
//}... -
Pathname
# executable _ real? -> bool (12224.0) -
FileTest.executable_real?(self.to_s) と同じです。
...FileTest.executable_real?(self.to_s) と同じです。
@see FileTest.#executable_real?... -
File
:: Stat # executable _ real? -> bool (12208.0) -
実ユーザ/グループIDで実行できる時に真を返します。
...実ユーザ/グループIDで実行できる時に真を返します。
//emlist[][ruby]{
p File::Stat.new($0).executable_real?
#例
#=> true
//}... -
Shell
# executable _ real?(file) -> bool (12208.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable_real?... -
Shell
:: CommandProcessor # executable _ real?(file) -> bool (12208.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable_real?... -
Shell
:: Filter # executable _ real?(file) -> bool (12208.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable_real?... -
WEBrick
:: HTTPAuth :: Authenticator # realm -> String (12101.0) -
レルムを返します。
レルムを返します。 -
WEBrick
:: HTTPAuth :: BasicAuth # realm -> String (12101.0) -
realm を文字列で返します。
...
realm を文字列で返します。... -
Numeric
# real? -> bool (9132.0) -
常に true を返します。(Complex またはそのサブクラスではないことを意味します。)
...true を返します。(Complex またはそのサブクラスではないことを意味します。)
Numeric のサブクラスは、このメソッドを適切に再定義しなければなりません。
//emlist[例][ruby]{
10.real? # => true
-10.real? # => true
0.......1.real? # => true
Rational(2, 3).real? # => true
//}
@see Numeric#integer?、Complex#real?...