1件ヒット
[1-1件を表示]
(0.510秒)
トップページ > :Object#class > :to_regexp > :to_hash > :pretty_print_cycle > :each_object > :min > クラス:JSON::State > :3.1
ライブラリ
- json (1)
検索結果
-
JSON
:: State . new(options = {}) -> JSON :: State (58.0) -
自身を初期化します。
...by]{
require "json"
json_state = JSON::State.new(indent: "\t")
json_state.class # => JSON::Ext::Generator::State
json_state.indent # => "\t"
//}
//emlist[例 JSON::State を指定][ruby]{
require "json"
json_state = JSON::State.new(indent: "\t")
copy = JSON::State.new(json_state)
copy.class # =...