402件ヒット
[101-200件を表示]
(0.119秒)
ライブラリ
- ビルトイン (60)
- benchmark (24)
- matrix (48)
- pathname (72)
- shell (12)
-
shell
/ command-processor (12) -
shell
/ filter (18) - tempfile (12)
-
webrick
/ httpauth / authenticator (12) -
webrick
/ httpauth / basicauth (12) -
webrick
/ httpauth / htdigest (48) -
webrick
/ httpauth / htpasswd (36) -
webrick
/ httpauth / userdb (36)
クラス
-
Benchmark
:: Tms (24) - Complex (12)
-
File
:: Stat (36) - Matrix (48)
- Numeric (12)
- Pathname (72)
- Shell (12)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (18) - Tempfile (12)
-
WEBrick
:: HTTPAuth :: BasicAuth (12) -
WEBrick
:: HTTPAuth :: Htdigest (48) -
WEBrick
:: HTTPAuth :: Htpasswd (36)
モジュール
キーワード
- close (12)
-
delete
_ passwd (24) - each (12)
-
executable
_ real? (42) - format (12)
-
get
_ passwd (36) - integer? (12)
- magnitude (12)
-
make
_ passwd (12) -
readable
_ real? (30) - real? (12)
- realdirpath (12)
- realm (24)
- realpath (24)
- rect (12)
- rectangular (12)
-
set
_ passwd (36) -
writable
_ real? (42)
検索結果
先頭5件
-
Pathname
# writable _ real? -> bool (12224.0) -
FileTest.writable_real?(self.to_s) と同じです。
...FileTest.writable_real?(self.to_s) と同じです。
@see FileTest.#writable_real?... -
Shell
# executable _ real?(file) -> bool (12208.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable_real?... -
Shell
# writable _ real?(file) -> bool (12208.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#writable_real?... -
Shell
:: CommandProcessor # executable _ real?(file) -> bool (12208.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable_real?... -
Shell
:: CommandProcessor # writable _ real?(file) -> bool (12208.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#writable_real?... -
Shell
:: Filter # executable _ real?(file) -> bool (12208.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable_real?... -
Shell
:: Filter # writable _ real?(file) -> bool (12208.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#writable_real?... -
WEBrick
:: HTTPAuth :: Authenticator # realm -> String (9201.0) -
レルムを返します。
レルムを返します。 -
WEBrick
:: HTTPAuth :: BasicAuth # realm -> String (9201.0) -
realm を文字列で返します。
...
realm を文字列で返します。... -
Matrix
# real? -> bool (9136.0) -
行列の全要素が実(Numeric#real?)であれば true を返します。
...全要素が実(Numeric#real?)であれば true を返します。
Complexオブジェクトを要素に持つ場合は虚部が0でも偽を返します。
//emlist[例][ruby]{
require 'matrix'
Matrix[[1, 0], [0, 1]].real? # => true
Matrix[[Complex(0, 1), 0], [0, 1]].real? # => false
# 要素が......実数であっても Complex オブジェクトなら偽を返す。
Matrix[[Complex(1, 0), 0], [0, 1]].real? # => false
//}... -
Pathname
# readable _ real? -> bool (9124.0) -
FileTest.readable_real?(self.to_s) と同じです。
...FileTest.readable_real?(self.to_s) と同じです。
@see FileTest.#readable_real?... -
File
:: Stat # readable _ real? -> bool (9108.0) -
実ユーザ/実グループによって読み込み可能な時に真を返します。
...実ユーザ/実グループによって読み込み可能な時に真を返します。
//emlist[][ruby]{
p File::Stat.new($0).readable_real? #=> true
//}...