るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.034秒)
トップページ > クエリ:Hash[x] > クエリ:OPT[x] > クエリ:from_state[x]

別のキーワード

  1. fileutils opt_table
  2. security opt
  3. rubygems/security opt
  4. win32ole size_opt_params
  5. win32ole_method size_opt_params

ライブラリ

クラス

検索結果

JSON::State.from_state(options) -> JSON::State (18225.0)

与えられた options によって生成した JSON::State のインスタンスを返します。

...与えられた options によって生成した JSON::State のインスタンスを返します。

@param options JSON::State のインスタンスか、ハッシュを指定します。

@return options がハッシュである場合は、それによって初期化した JSON::State を...
...返します。options が JSON::State のインスタンスである場合は単に
opt
ions を返します。いずれでも無い場合は、何も設定されていない JSON::State の
インスタンスを返します。

//emlist[例 Hash を指定][ruby]{
require "json"

j...
...son_state = JSON::State.from_state(indent: "\t")
json_state.class # => JSON::Ext::Generator::State
json_state.indent # => "\t"
//}

//emlist[例 JSON::State を指定][ruby]{
require "json"

json_state = JSON::State.from_state(indent: "\t")
# JSON を出力する何らかの処理を実行する
co...