るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.103秒)

別のキーワード

  1. win32ole ole_method_help
  2. win32ole ole_obj_help
  3. win32ole ole_show_help
  4. un help
  5. irb/help print_usage

ライブラリ

クラス

検索結果

OptionParser#to_a -> [String] (21120.0)

サマリの各行を要素とした配列を返します。

...を返します。

//emlist[例][ruby]{
require "optparse"

opts = OptionParser.new do |opts|
opts.on_head("-i", "--init")
opts.on("-u", "--update")
opts.on_tail("-h", "--help")
end

opts.to_a # => ["Usage: test [options]", " -i, --init\n", " -u, --update\n", " -h, --help\n"]
//}...