590件ヒット
[101-200件を表示]
(0.136秒)
ライブラリ
- ビルトイン (365)
-
irb
/ context (36) -
irb
/ ext / math-mode (8) -
irb
/ output-method (24) -
minitest
/ unit (1) -
net
/ smtp (12) - optparse (12)
- ostruct (24)
- pp (24)
- rake (24)
-
shell
/ filter (6) - strscan (12)
- sync (6)
-
win32
/ registry (12) - win32ole (24)
クラス
- Bignum (6)
-
Encoding
:: Converter (12) - Fixnum (6)
- Float (24)
- Hash (12)
-
IRB
:: Context (44) -
IRB
:: OutputMethod (24) - Integer (24)
- Method (24)
- Module (48)
-
Net
:: SMTP (12) - Object (48)
- OpenStruct (24)
-
OptionParser
:: ParseError (12) -
Rake
:: TaskArguments (24) - Range (24)
- Rational (24)
- Regexp (24)
-
RubyVM
:: AbstractSyntaxTree :: Node (7) -
RubyVM
:: InstructionSequence (12) -
Shell
:: Filter (6) - String (24)
- StringScanner (12)
- Thread (22)
-
Thread
:: Backtrace :: Location (12) - UnboundMethod (36)
-
WIN32OLE
_ EVENT (12) -
WIN32OLE
_ TYPE (12) -
Win32
:: Registry (12)
モジュール
-
MiniTest
:: Assertions (1) -
Sync
_ m (6)
キーワード
- % (12)
- [] (12)
-
bind
_ call (12) -
const
_ missing (12) -
default
_ proc (12) - handler= (12)
-
initialize
_ copy (12) - inspect? (12)
-
inspect
_ mode (12) -
inspect
_ mode= (12) - math? (4)
-
math
_ mode (4) -
mu
_ pp (1) - name (12)
- name= (10)
- pp (12)
- ppx (12)
-
pretty
_ print (12) -
pretty
_ print _ inspect (12) -
sync
_ inspect (6) -
to
_ s (126)
検索結果
先頭5件
-
OptionParser
:: ParseError # inspect -> String (18120.0) -
自身を人間が読みやすい形の文字列表現にして返します。
...自身を人間が読みやすい形の文字列表現にして返します。
@return 文字列を返します。
@see Object#inspect... -
String
# inspect -> String (18120.0) -
文字列オブジェクトの内容を、出力したときに人間が読みやすいような適当な形式に変換します。 変換された文字列は印字可能な文字のみによって構成されます
...ために用意されています。
永続化などの目的で文字列をダンプしたいときは、
String#dump を使うべきです。
//emlist[例][ruby]{
# p ではないことに注意
puts "string".inspect # => "string"
puts "\t\r\n".inspect # => "\t\r\n"
//}
@see String#dump... -
WIN32OLE
_ TYPE # inspect -> String (18120.0) -
selfを説明的な文字列で表現します。
...現します。
@return "#<WIN32OLE_TYPE"とWIN32OLE_TYPE#to_sの結果を「:」で結合
し、「>」で閉じた文字列を返します。
x = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Worksheet')
puts x.inspect #=> #<WIN32OLE_TYPE:Worksheet>
@see WIN32OLE_TYPE#... -
Win32
:: Registry # inspect (18118.0) -
@todo
...@todo... -
OpenStruct
# inspect -> String (18114.0) -
オブジェクトを人間が読める形式に変換した文字列を返します。
...オブジェクトを人間が読める形式に変換した文字列を返します。
@see Object#inspect... -
Rake
:: TaskArguments # inspect -> String (18114.0) -
自身を人間に読みやすい文字列にして返します。
...自身を人間に読みやすい文字列にして返します。
@see Hash#inspect... -
Regexp
# inspect -> String (18114.0) -
Regexp#to_s より自然な文字列を返します。
...Regexp#to_s より自然な文字列を返します。
//emlist[例][ruby]{
p /^ugou.*?/i.to_s # => "(?i-mx:^ugou.*?)"
p /^ugou.*?/i.inspect # => "/^ugou.*?/i"
//}
@see Regexp#to_s... -
RubyVM
:: AbstractSyntaxTree :: Node # inspect -> String (18114.0) -
self のデバッグ用の情報を含んだ文字列を返します。
...self のデバッグ用の情報を含んだ文字列を返します。
//emlist[][ruby]{
node = RubyVM::AbstractSyntaxTree.parse('1 + 1')
puts node.inspect
# => #<RubyVM::AbstractSyntaxTree::Node:SCOPE@1:0-1:5>
//}... -
RubyVM
:: InstructionSequence # inspect -> String (18114.0) -
self の情報をラベルとパスを含んだ人間に読みやすい文字列にして返します。
...んだ人間に読みやすい文字列にして返します。
//emlist[例][ruby]{
iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
iseq.inspect # => "<RubyVM::InstructionSequence:<compiled>@<compiled>>"
//}
@see RubyVM::InstructionSequence#label,
RubyVM::InstructionSequence#path... -
Shell
:: Filter # inspect -> String (18114.0) -
オブジェクトを人間が読める形式に変換した文字列を返します。
...オブジェクトを人間が読める形式に変換した文字列を返します。
@see Object#inspect...