るりまサーチ

最速Rubyリファレンスマニュアル検索!
3376件ヒット [101-200件を表示] (0.034秒)
トップページ > クエリ:PP.pp[x] > クエリ:column[x] > クエリ:add_loader[x]

別のキーワード

  1. pp pp
  2. pp comma_breakable
  3. pp singleline_pp
  4. pp object_group
  5. pp sharing_detection

キーワード

検索結果

<< < 1 2 3 4 ... > >>

PP#object_group(obj) { ... } -> () (38000.0)

以下と等価な働きをするもので簡便のために用意されています。 group(1, '#<' + obj.class.name, '>') { ... }

以下と等価な働きをするもので簡便のために用意されています。
group(1, '#<' + obj.class.name, '>') { ... }

@param obj 表示したいオブジェクトを指定します。

@see PrettyPrint#group

Kernel.#pp(*obj) -> object (32314.0)

指定されたオブジェクト obj を標準出力に見やすい形式(プリティプリント)で出力します。 obj それぞれを引数として PP.pp を呼ぶことと同等です。

... PP.pp を呼ぶことと同等です。


@param obj 表示したいオブジェクトを指定します。

//emlist[例][ruby]{
require 'pp'

b = [1, 2, 3] * 4
a = [b, b]
a << a
pp
a

#=> [[1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3],
# [1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3],
# [...]]
//}

@see PP.pp...

Socket::AF_PPP -> Integer (24400.0)

@todo Point-to-Point Protocol。 Socket.open の第一引数 domain に使用します。

@todo
Point-to-Point Protocol。
Socket.open の第一引数 domain に使用します。

Socket::Constants::AF_PPP -> Integer (24400.0)

@todo Point-to-Point Protocol。 Socket.open の第一引数 domain に使用します。

@todo
Point-to-Point Protocol。
Socket.open の第一引数 domain に使用します。

Socket::Constants::PF_PPP -> Integer (24400.0)

@todo Point-to-Point Protocol。 Socket.open の第一引数 domain に使用します。

@todo
Point-to-Point Protocol。
Socket.open の第一引数 domain に使用します。

絞り込み条件を変える

Socket::PF_PPP -> Integer (24400.0)

@todo Point-to-Point Protocol。 Socket.open の第一引数 domain に使用します。

@todo
Point-to-Point Protocol。
Socket.open の第一引数 domain に使用します。

Kernel.#pp(*obj) -> object (24326.0)

指定されたオブジェクト obj を標準出力に見やすい形式(プリティプリント)で出力します。 obj それぞれを引数として PP.pp を呼ぶことと同等です。

...ぞれを引数として PP.pp を呼ぶことと同等です。

初回呼び出し時に自動的に pp を require します。

@param obj 表示したいオブジェクトを指定します。

//emlist[例][ruby]{
require 'pp'

b = [1, 2, 3] * 4
a = [b, b]
a << a
pp
a

#=> [[1, 2, 3, 1, 2, 3,...
...1, 2, 3, 1, 2, 3],
# [1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3],
# [...]]
//}

@see PP.pp...

IRB::OutputMethod#pp(*objs) -> object (24202.0)

各 obj を inspect した文字列を self に出力し、最後に改行を出力します。

各 obj を inspect した文字列を self に出力し、最後に改行を出力します。

@param objs 任意のオブジェクトを指定します。

Logger::Application#appname -> String (18200.0)

アプリケーション名を取得します。

アプリケーション名を取得します。

Shell#append(to, filter) -> Shell::AppendFile | Shell::AppendIO (12600.0)

@todo

@todo

@param to 文字列か IO を指定します。

@param filter Shell::Filter のインスタンスを指定します。

絞り込み条件を変える

Shell::CommandProcessor#append(to, filter) -> Shell::AppendFile | Shell::AppendIO (12600.0)

@todo

@todo

@param to 文字列か IO を指定します。

@param filter Shell::Filter のインスタンスを指定します。

Shell::Filter#append(to, filter) -> Shell::AppendFile | Shell::AppendIO (12600.0)

@todo

@todo

@param to 文字列か IO を指定します。

@param filter Shell::Filter のインスタンスを指定します。

Rake.application -> Rake::Application (12424.0)

現在の Rake アプリケーションを返します。

...ケーションを返します。

//emlist[][ruby]{
# Rakefile での記載例とする

require 'pp'

task default: :test_rake_app
task :test_rake_app do
pp
Rake.application
end

# => #<Rake::Application:0x31b0f18
# @default_loader=#<Rake::DefaultLoader:0x31b0c78>,
# @imported=[],
#...
...ile", "rakefile.rb", "Rakefile.rb"],
# @rules=[],
# @scope=LL(),
# @tasks=
# {"default"=><Rake::Task default => [test_rake_app]>,
# "test_rake_app"=><Rake::Task test_rake_app => []>},
# @terminal_columns=0,
# @top_level_tasks=["default"],
# @tty_output=false>
//}...
<< < 1 2 3 4 ... > >>