るりまサーチ (Ruby 2.5.0)

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

別のキーワード

  1. net/imap content_id
  2. json create_id
  3. json create_id=
  4. openssl id
  5. drb install_id_conv

ライブラリ

モジュール

検索結果

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

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

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

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

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