るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.052秒)
トップページ > バージョン:2.2.0[x] > クエリ:IO[x] > クエリ:require[x] > クエリ:>[x] > クエリ:options_of[x]

別のキーワード

  1. _builtin >
  2. bigdecimal >
  3. module >
  4. integer >
  5. comparable >

ライブラリ

モジュール

検索結果

FileUtils.options_of(mid) -> Array (72940.0)

与えられたメソッド名で使用可能なオプション名の配列を返します。

与えられたメソッド名で使用可能なオプション名の配列を返します。

@param mid メソッド名を指定します。

//emlist[][ruby]{
require 'fileutils'
FileUtils.options_of(:rm) # => ["noop", "verbose", "force"]
//}