別のキーワード
ライブラリ
- ビルトイン (324)
- benchmark (120)
- etc (36)
- fiddle (12)
- matrix (48)
- openssl (12)
- pathname (72)
-
rubygems
/ config _ file (12) - shell (18)
-
shell
/ command-processor (18) -
shell
/ filter (18) - tempfile (12)
-
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 (48) - Complex (60)
- File (60)
-
File
:: Stat (36) -
Gem
:: ConfigFile (12) - Matrix (48)
- Numeric (60)
- Pathname (72)
- Shell (18)
-
Shell
:: CommandProcessor (18) -
Shell
:: Filter (18) - Tempfile (12)
-
WEBrick
:: HTTPAuth :: BasicAuth (24) -
WEBrick
:: HTTPAuth :: DigestAuth (12) -
WEBrick
:: HTTPAuth :: Htdigest (48) -
WEBrick
:: HTTPAuth :: Htpasswd (36)
モジュール
- Benchmark (72)
- Etc (36)
- Fiddle (12)
- FileTest (36)
-
OpenSSL
:: ASN1 (12) - Process (60)
-
WEBrick
:: HTTPAuth (24) -
WEBrick
:: HTTPAuth :: Authenticator (12) -
WEBrick
:: HTTPAuth :: UserDB (36)
キーワード
-
CLOCK
_ REALTIME (12) -
CLOCK
_ REALTIME _ ALARM (12) -
CLOCK
_ REALTIME _ COARSE (12) -
CLOCK
_ REALTIME _ FAST (12) -
CLOCK
_ REALTIME _ PRECISE (12) - FORMAT (24)
-
NEWS for Ruby 2
. 5 . 0 (8) - Numeric (12)
- REAL (12)
-
REALLOC
_ N (12) -
SC
_ REALTIME _ SIGNALS (12) -
SC
_ XOPEN _ REALTIME (12) -
SC
_ XOPEN _ REALTIME _ THREADS (12) - abs (12)
- abs2 (12)
-
basic
_ auth (12) - benchmark (12)
- bigdecimal (12)
- bm (12)
- bmbm (12)
- close (12)
-
delete
_ passwd (24) - each (12)
-
executable
_ real? (66) - format (12)
-
get
_ passwd (36) - imag (12)
- imaginary (12)
- integer? (12)
- magnitude (12)
-
make
_ passwd (36) - measure (12)
- new (12)
-
proxy
_ basic _ auth (12) -
rb
_ class _ real (12) -
readable
_ real? (66) - real? (36)
- realdirpath (24)
- realloc (12)
-
really
_ verbose (12) - realm (24)
- realpath (36)
- realtime (12)
- rect (12)
- rectangular (12)
-
ruby
_ xrealloc (12) -
set
_ passwd (36) -
writable
_ real? (66) - 正規表現 (12)
検索結果
先頭5件
-
Pathname
# writable _ real? -> bool (6123.0) -
FileTest.writable_real?(self.to_s) と同じです。
...FileTest.writable_real?(self.to_s) と同じです。
@see FileTest.#writable_real?... -
Complex
# real? -> false (6119.0) -
常に false を返します。
...常に false を返します。
//emlist[例][ruby]{
(2+3i).real? # => false
(2+0i).real? # => false
//}
@see Numeric#real?... -
File
. executable _ real?(path) -> bool (6117.0) -
FileTest.#executable_real? と同じです。
...FileTest.#executable_real? と同じです。
@param path パスを表す文字列を指定します。... -
File
. readable _ real?(path) -> bool (6117.0) -
FileTest.#readable_real? と同じです。
...FileTest.#readable_real? と同じです。
@param path パスを表す文字列か IO オブジェクトを指定します。... -
File
. writable _ real?(path) -> bool (6117.0) -
FileTest.#writable_real? と同じです。
...FileTest.#writable_real? と同じです。
@param path パスを表す文字列を指定します。... -
OpenSSL
:: ASN1 :: REAL -> Integer (6117.0) -
ASN.1 UNIVERSAL タグの、 REAL のタグ番号 9 を表す定数です。
...ASN.1 UNIVERSAL タグの、
REAL のタグ番号 9 を表す定数です。... -
FileTest
. # executable _ real?(file) -> bool (6113.0) -
ファイルがカレントプロセスの実ユーザか実グループで実行できる時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。
...ます。
@param file ファイル名を表す文字列を指定します。
//emlist[例][ruby]{
IO.write("empty.txt", "")
File.chmod(0744, "empty.txt")
FileTest.executable_real?("empty.txt") # => true
File.chmod(0644, "empty.txt")
FileTest.executable_real?("empty.txt") # => false
//}... -
VALUE rb
_ class _ real(VALUE cl) (6112.0) -
特異クラスや化身クラス (T_ICLASS) を飛ばして cl の スーパークラスを辿り、Ruby レベルに露出してもよいクラスを返します。
...します。
例:
rb_class_real(RBASIC(klass)->super)
rb_obj_class(obj) は、obj のクラスを返す汎用の関数(Object#type と
同じ)だが、obj が Qtrue などでない RBasic 構造のものであることが
わかっているなら
rb_class_real(RBASIC(obj)->klass)
でも... -
File
:: Stat # executable _ real? -> bool (6107.0) -
実ユーザ/グループIDで実行できる時に真を返します。
...実ユーザ/グループIDで実行できる時に真を返します。
//emlist[][ruby]{
p File::Stat.new($0).executable_real?
#例
#=> true
//}...