1177件ヒット
[1-100件を表示]
(0.085秒)
ライブラリ
- ビルトイン (575)
- bigdecimal (12)
- csv (36)
- ipaddr (12)
-
irb
/ context (72) -
irb
/ inspector (24) - matrix (24)
-
net
/ smtp (12) - openssl (12)
- optparse (12)
- ostruct (24)
- pp (24)
- rake (36)
-
rdoc
/ context (12) -
rubygems
/ dependency _ installer (12) -
rubygems
/ installer (48) -
rubygems
/ remote _ fetcher (12) -
rubygems
/ specification (36) -
rubygems
/ uninstaller (84) - set (14)
-
shell
/ filter (6) - socket (24)
- strscan (12)
- sync (6)
-
win32
/ registry (12) - win32ole (12)
- zlib (12)
クラス
-
ARGF
. class (24) - Addrinfo (12)
- Array (24)
- BasicObject (24)
- BigDecimal (12)
- Bignum (6)
- CSV (12)
-
CSV
:: Row (12) -
CSV
:: Table (12) - Complex (12)
- Data (6)
- Dir (12)
- Encoding (12)
-
Encoding
:: Converter (12) -
Enumerator
:: ArithmeticSequence (7) -
Enumerator
:: Chain (7) - Exception (12)
- FalseClass (24)
- Fixnum (6)
- Float (24)
-
Gem
:: DependencyInstaller (12) -
Gem
:: Installer (48) -
Gem
:: RemoteFetcher (12) -
Gem
:: Specification (36) -
Gem
:: Uninstaller (84) - Hash (24)
- IPAddr (12)
-
IRB
:: Context (72) -
IRB
:: Inspector (24) - Integer (24)
- MatchData (12)
- Matrix (12)
- Method (24)
- Module (36)
-
Net
:: SMTP (12) - Object (36)
-
OpenSSL
:: HMAC (12) - OpenStruct (24)
-
OptionParser
:: ParseError (12) - Proc (24)
-
Process
:: Status (12) -
RDoc
:: Context :: Section (12) -
Rake
:: Task (12) -
Rake
:: TaskArguments (24) - Range (12)
- Rational (12)
- Regexp (12)
-
RubyVM
:: AbstractSyntaxTree :: Node (7) -
RubyVM
:: InstructionSequence (12) - Set (20)
-
Shell
:: Filter (6) -
Socket
:: Ifaddr (12) - String (12)
- StringScanner (12)
- Struct (24)
- Symbol (12)
- Thread (20)
-
Thread
:: Backtrace :: Location (12) - Time (6)
- TracePoint (12)
- TrueClass (12)
- UnboundMethod (24)
- Vector (12)
-
WIN32OLE
_ TYPE (12) -
Win32
:: Registry (12) -
Zlib
:: GzipFile :: Error (12)
モジュール
-
Sync
_ m (6)
キーワード
-
_ _ inspect _ _ (12) -
ask
_ if _ ok (12) -
dependencies
_ ok? (12) - download (12)
-
ensure
_ dependency (12) -
find
_ spec _ by _ name _ and _ version (12) - init (12)
- inspect (642)
- inspect? (12)
-
inspect
_ mode (12) -
inspect
_ mode= (12) -
inspect
_ sockaddr (12) -
inspect
_ value (12) - install (12)
-
installation
_ path (12) -
instance
_ eval (24) - name (12)
-
path
_ ok? (12) -
pretty
_ inspect (12) -
pretty
_ print _ inspect (12) - remove (12)
-
remove
_ executables (12) -
sync
_ inspect (6) -
to
_ s (193) -
uninstall
_ gem (12) -
write
_ spec (12)
検索結果
先頭5件
-
Gem
:: Installer # spec -> Gem :: Specification (21202.0) -
インストールしようとしている Gem に対応する Gem::Specification のインスタンスを返します。
...インストールしようとしている Gem に対応する Gem::Specification のインスタンスを返します。... -
Gem
:: Uninstaller # spec -> Gem :: Specification (21202.0) -
Gem::Uninstaller#uninstall_gem の実行中のみセットされます。
...Gem::Uninstaller#uninstall_gem の実行中のみセットされます。... -
IRB
:: Inspector # inspect _ value(v) -> () (18201.0) -
ライブラリ内部で使用します。
ライブラリ内部で使用します。 -
RubyVM
:: InstructionSequence # inspect -> String (15201.0) -
self の情報をラベルとパスを含んだ人間に読みやすい文字列にして返します。
...んだ人間に読みやすい文字列にして返します。
//emlist[例][ruby]{
iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
iseq.inspect # => "<RubyVM::InstructionSequence:<compiled>@<compiled>>"
//}
@see RubyVM::InstructionSequence#label,
RubyVM::InstructionSequence#path... -
ARGF
. class # inspect -> String (12201.0) -
常に文字列 "ARGF" を返します。
常に文字列 "ARGF" を返します。 -
Addrinfo
# inspect _ sockaddr -> String (12201.0) -
アドレスやポート番号などの情報を人間に読める形の文字列で返します。
...などの情報を人間に読める形の文字列で返します。
require 'socket'
Addrinfo.tcp("localhost", 80).inspect_sockaddr #=> "127.0.0.1:80"
Addrinfo.tcp("ip6-localhost", 80).inspect_sockaddr #=> "[::1]:80"
Addrinfo.unix("/tmp/sock").inspect_sockaddr #=> "/tmp/sock"... -
Array
# inspect -> String (12201.0) -
自身の情報を人間に読みやすい文字列にして返します。
...自身の情報を人間に読みやすい文字列にして返します。
//emlist[例][ruby]{
[1, 2, 3, 4].to_s # => "[1, 2, 3, 4]"
[1, 2, 3, 4].inspect # => "[1, 2, 3, 4]"
//}... -
BigDecimal
# inspect -> String (12201.0) -
BigDecimal オブジェクトを表す文字列を返します。
...BigDecimal オブジェクトを表す文字列を返します。
//emlist[][ruby]{
require "bigdecimal"
BigDecimal("1234.5678").inspect
# => "0.12345678e4"
//}... -
Bignum
# inspect(base = 10) -> String (12201.0) -
self を引数で指定した基数の文字列表現に変換します。
self を引数で指定した基数の文字列表現に変換します。
@param base 基数を 2 から 36 の整数で指定します。
12345654321.to_s #=> "12345654321"
12345654321.to_s(2) #=> "1011011111110110111011110000110001"
12345654321.to_s(8) #=> "133766736061"
12345654321.to_s(16) #=> "2dfdbbc31"
78546939656932.to_s(36) ... -
CSV
# inspect -> String (12201.0) -
ASCII 互換文字列で自身の情報を表したものを返します。
...ASCII 互換文字列で自身の情報を表したものを返します。
//emlist[例][ruby]{
require "csv"
csv = CSV.new("header1,header2\nrow1_1,row1_2")
csv.inspect # => "<#CSV io_type:StringIO encoding:UTF-8 lineno:0 col_sep:\",\" row_sep:\"\\n\" quote_char:\"\\\"\">"
//}...