56件ヒット
[1-56件を表示]
(0.105秒)
別のキーワード
ライブラリ
- csv (12)
-
irb
/ context (36) -
irb
/ ext / math-mode (8)
クラス
-
CSV
:: Table (12) -
IRB
:: Context (44)
キーワード
- inspect? (12)
-
inspect
_ mode (12) -
inspect
_ mode= (12) - math? (4)
-
math
_ mode (4)
検索結果
先頭5件
-
CSV
:: Table # inspect -> String (18114.0) -
モードとサイズを US-ASCII な文字列で返します。
...モードとサイズを US-ASCII な文字列で返します。
//emlist[][ruby]{
require 'csv'
csv = CSV.new("a,b,c\n1,2,3", headers: true)
table = csv.read
p table.inspect # => "#<CSV::Table mode:col_or_row row_count:2>"
//}... -
IRB
:: Context # inspect _ mode=(opt) (12239.0) -
実行結果の出力方式を opt に設定します。
...false, :to_s, :raw
出力結果を to_s したものを表示します。
: true, :p, :inspect
出力結果を inspect したものを表示します。
: :pp, :pretty_inspect
出力結果を pretty_inspect したものを表示します。
: :yaml, :YAML
出力結果を YAML 形式にした......ものを表示します。
: :marshal, :Marshal, :MARSHAL, Marshal
出力結果を Marshal.#dump したものを表示します。
@see lib:irb#inspect_mode... -
IRB
:: Context # inspect _ mode -> object | nil (12215.0) -
実行結果の出力方式を返します。
...実行結果の出力方式を返します。
@see IRB::Context#inspect_mode=... -
IRB
:: Context # inspect? -> bool (6158.0) -
IRB::Context#inspect_mode が有効かどうかを返します。
...IRB::Context#inspect_mode が有効かどうかを返します。
@return 出力結果に to_s したものを表示する場合は false を返します。それ
以外の場合は true を返します。
@see IRB::Context#inspect_mode, IRB::Context#inspect_mode=... -
IRB
:: Context # math _ mode -> bool (3130.0) -
math_mode が有効かどうかを返します。
...math_mode が有効かどうかを返します。
@see IRB::Context#math_mode=, IRB::Context#inspect?... -
IRB
:: Context # math? -> bool (30.0) -
math_mode が有効かどうかを返します。
...math_mode が有効かどうかを返します。
@see IRB::Context#math_mode=, IRB::Context#inspect?...