ライブラリ
- ビルトイン (160)
-
cgi
/ core (12) -
cgi
/ session (12) - date (12)
-
net
/ http (12) - openssl (108)
- psych (24)
- readline (72)
-
rexml
/ document (12) - rubygems (12)
-
rubygems
/ requirement (48) -
rubygems
/ specification (36) -
test
/ unit (1) - thread (4)
- uri (88)
-
webrick
/ httprequest (12)
クラス
- CGI (12)
-
CGI
:: Session (12) - Date (12)
-
Gem
:: Requirement (48) -
Gem
:: Specification (36) - Integer (8)
-
Net
:: HTTPRequest (12) -
OpenSSL
:: ASN1 :: Sequence (24) -
OpenSSL
:: OCSP :: Request (24) -
OpenSSL
:: PKey :: RSA (24) -
OpenSSL
:: X509 :: ExtensionFactory (12) -
OpenSSL
:: X509 :: Request (24) -
Psych
:: Nodes :: Scalar (12) -
Psych
:: Nodes :: Sequence (12) -
REXML
:: Text (12) - Regexp (12)
-
RubyVM
:: InstructionSequence (116) -
Thread
:: Queue (16) -
Thread
:: SizedQueue (12) -
URI
:: FTP (12) -
URI
:: Generic (12) -
URI
:: HTTP (12) -
URI
:: LDAP (12) -
URI
:: MailTo (12) -
WEBrick
:: HTTPRequest (12)
モジュール
-
Gem
:: QuickLoader (12) - Readline (72)
-
Test
:: Unit (1) - URI (28)
キーワード
-
_ strptime (12) -
basic
_ quote _ characters (12) -
basic
_ quote _ characters= (12) - compile (12)
-
compile
_ file (12) -
compile
_ option (12) -
compile
_ option= (12) -
completer
_ quote _ characters (12) -
completer
_ quote _ characters= (12) - create (12)
- decode (7)
- default (12)
- disasm (12)
- disassemble (12)
- encode (7)
- escape (7)
-
filename
_ quote _ characters (12) -
filename
_ quote _ characters= (12) - generate (24)
-
load
_ from _ binary (10) -
load
_ from _ binary _ extra _ data (10) -
load
_ full _ rubygems _ library (12) - new (268)
- of (12)
- parse (24)
- quote (12)
-
required
_ attribute (12) -
required
_ attribute? (12) -
required
_ attributes (12) -
setup
_ argv (1) - sqrt (8)
- unescape (7)
検索結果
先頭5件
-
Gem
:: Specification . required _ attribute(name , default = nil) -> () (6101.0) -
必須の属性を作成します。
必須の属性を作成します。
@param name 属性名を指定します。
@param default デフォルト値を指定します。
@see Gem::Specification.attribute -
Gem
:: Specification . required _ attribute?(name) -> bool (6101.0) -
必須属性であれば真を返します。
必須属性であれば真を返します。
@param name 属性名を指定します。 -
Gem
:: Specification . required _ attributes -> Array (6101.0) -
必須属性のリストを返します。
必須属性のリストを返します。 -
Integer
. sqrt(n) -> Integer (6101.0) -
非負整数 n の整数の平方根を返します。すなわち n の平方根以下の 最大の非負整数を返します。
...の整数の時に発生します。
//emlist[][ruby]{
Integer.sqrt(0) # => 0
Integer.sqrt(1) # => 1
Integer.sqrt(24) # => 4
Integer.sqrt(25) # => 5
Integer.sqrt(10**400) == 10**200 # => true
//}
Math.sqrt(n).floor と同等ですが、後者は浮動小数点数の精度......の限界によって
真の値とは違う結果になることがあります。
//emlist[][ruby]{
Integer.sqrt(10**46) #=> 100000000000000000000000
Math.sqrt(10**46).floor #=> 99999999999999991611392 (!)
//}
@see Math.#sqrt... -
Readline
. basic _ quote _ characters -> String (6101.0) -
スペースなどの単語の区切りをクオートするための 複数の文字で構成される文字列を取得します。
...スペースなどの単語の区切りをクオートするための
複数の文字で構成される文字列を取得します。
@raise NotImplementedError サポートしていない環境で発生します。
@see Readline.basic_quote_characters=... -
Readline
. basic _ quote _ characters=(string) (6101.0) -
スペースなどの単語の区切りをクオートするための 複数の文字で構成される文字列 string を指定します。
...複数の文字で構成される文字列 string を指定します。
GNU Readline のデフォルト値は、「"'」です。
@param string 文字列を指定します。
@raise NotImplementedError サポートしていない環境で発生します。
@see Readline.basic_quote_characters... -
Readline
. completer _ quote _ characters -> String (6101.0) -
ユーザの入力の補完を行う際、スペースなどの単語の区切りを クオートするための複数の文字で構成される文字列を取得します。
...ーザの入力の補完を行う際、スペースなどの単語の区切りを
クオートするための複数の文字で構成される文字列を取得します。
@raise NotImplementedError サポートしていない環境で発生します。
@see Readline.completer_quote_characters=... -
Readline
. completer _ quote _ characters=(string) (6101.0) -
ユーザの入力の補完を行う際、スペースなどの単語の区切りを クオートするための複数の文字で構成される文字列 string を指定します。 指定した文字の間では、Readline.completer_word_break_characters= で指定した文字列に含まれる文字も、普通の文字列として扱われます。
...mpleter_word_break_characters=
で指定した文字列に含まれる文字も、普通の文字列として扱われます。
@param string 文字列を指定します。
@raise NotImplementedError サポートしていない環境で発生します。
@see Readline.completer_quote_characters... -
Readline
. filename _ quote _ characters -> String (6101.0) -
ユーザの入力時にファイル名の補完を行う際、スペースなどの単語の区切りを クオートするための複数の文字で構成される文字列を取得します。
...ファイル名の補完を行う際、スペースなどの単語の区切りを
クオートするための複数の文字で構成される文字列を取得します。
@raise NotImplementedError サポートしていない環境で発生します。
@see Readline.filename_quote_characters=...