るりまサーチ (Ruby 2.5.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.112秒)
トップページ > 種類:特異メソッド[x] > バージョン:2.5.0[x] > クラス:URI::Generic[x] > クエリ:component[x]

別のキーワード

  1. tsort each_strongly_connected_component
  2. tsort each_strongly_connected_component_from
  3. uri component
  4. matrix component
  5. generic component

ライブラリ

検索結果

URI::Generic.component -> [Symbol] (54346.0)

URI の構成要素を表すシンボルの配列を返します。

...URI の構成要素を表すシンボルの配列を返します。

require 'uri'
p URI::Generic.component
p URI::MailTo.component

# => [:scheme, :userinfo, :host, :port, :registry, :path, :opaque, :query, :fragment]
# => [:scheme, :to, :headers]...