410件ヒット
[1-100件を表示]
(0.062秒)
別のキーワード
ライブラリ
- ビルトイン (114)
- json (168)
- openssl (12)
- rake (12)
-
ripper
/ lexer (24)
クラス
- Encoding (48)
-
Encoding
:: Converter (12) -
Enumerator
:: Lazy (12) -
JSON
:: State (132) -
OpenSSL
:: SSL :: SSLSocket (12) -
Rake
:: Application (12) - Ripper (8)
-
Ripper
:: Lexer (16) - Thread (42)
モジュール
- JSON (36)
キーワード
-
NEWS for Ruby 2
. 5 . 0 (8) -
STATELESS
_ ISO _ 2022 _ JP (12) -
STATELESS
_ ISO _ 2022 _ JP _ KDDI (12) -
Stateless
_ ISO _ 2022 _ JP (12) -
Stateless
_ ISO _ 2022 _ JP _ KDDI (12) -
abort
_ on _ exception= (24) - configure (12)
- depth (12)
- depth= (12)
-
from
_ state (12) -
insert
_ output (12) -
jump
_ tag _ but _ local _ jump (12) - lex (16)
-
max
_ nesting= (12) - merge (12)
- new (12)
- parse (8)
-
pretty
_ generate (12) -
pretty
_ unparse (12) -
rb
_ eval _ string _ protect (12) -
rb
_ eval _ string _ wrap (12) -
rb
_ jump _ tag (12) -
rb
_ load _ protect (12) -
rb
_ protect (12) -
report
_ on _ exception= (18) -
slice
_ before (12) - space (12)
- space= (12)
-
space
_ before (12) -
space
_ before= (12) -
tty
_ output= (12) - unparse (12)
検索結果
先頭5件
-
OpenSSL
:: SSL :: SSLSocket # state -> String (21101.0) -
現在の状態をアルファベット 6 文字の文字列で返します。
現在の状態をアルファベット 6 文字の文字列で返します。 -
Encoding
:: STATELESS _ ISO _ 2022 _ JP -> Encoding (12200.0) -
stateless-ISO-2022-JP エンコーディングです。
...stateless-ISO-2022-JP エンコーディングです。
ISO-2022-JPをステートレスに扱うための方式です。
Emacs-Mule エンコーディングを元にしています。... -
Encoding
:: STATELESS _ ISO _ 2022 _ JP _ KDDI -> Encoding (12200.0) -
stateless-ISO-2022-JP-KDDI エンコーディングです。
...stateless-ISO-2022-JP-KDDI エンコーディングです。
stateless-ISO-2022-JP の亜種です。
KDDI の携帯電話で使われる絵文字が含まれています。
@see https://www.au.com/ezfactory/tec/spec/img/typeD.pdf... -
Encoding
:: Stateless _ ISO _ 2022 _ JP -> Encoding (12200.0) -
stateless-ISO-2022-JP エンコーディングです。
...stateless-ISO-2022-JP エンコーディングです。
ISO-2022-JPをステートレスに扱うための方式です。
Emacs-Mule エンコーディングを元にしています。... -
Encoding
:: Stateless _ ISO _ 2022 _ JP _ KDDI -> Encoding (12200.0) -
stateless-ISO-2022-JP-KDDI エンコーディングです。
...stateless-ISO-2022-JP-KDDI エンコーディングです。
stateless-ISO-2022-JP の亜種です。
KDDI の携帯電話で使われる絵文字が含まれています。
@see https://www.au.com/ezfactory/tec/spec/img/typeD.pdf... -
JSON
:: State . from _ state(options) -> JSON :: State (9426.0) -
与えられた options によって生成した JSON::State のインスタンスを返します。
...えられた options によって生成した JSON::State のインスタンスを返します。
@param options JSON::State のインスタンスか、ハッシュを指定します。
@return options がハッシュである場合は、それによって初期化した JSON::State を......。options が JSON::State のインスタンスである場合は単に
options を返します。いずれでも無い場合は、何も設定されていない JSON::State の
インスタンスを返します。
//emlist[例 Hash を指定][ruby]{
require "json"
json_state = JS......: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 を出力する何らかの処理を実行する
copy = JSON::State.... -
JSON
:: State # depth=(depth) (9200.0) -
This sets the maximum level of data structure nesting in the generated JSON to the integer depth, max_nesting = 0 if no maximum should be checked.
...This sets the maximum level of data structure nesting in the generated
JSON to the integer depth, max_nesting = 0 if no maximum should be
checked.... -
JSON
:: State # space -> String (9148.0) -
JSON 形式の文字列のトークン間に挿入する文字列を返します。
...equire "json"
json_state = JSON::State.new(space: "")
json_state.space # => ""
puts JSON.generate([1, 2, { name: "tanaka", age: 19 }], json_state)
# => [1,2,{"name":"tanaka","age":19}]
json_state = JSON::State.new(space: "\t")
json_state.space # => "\t"
puts JSON.generate([......1, 2, { name: "tanaka", age: 19 }], json_state)
# => [1,2,{"name": "tanaka","age": 19}]
//}... -
JSON
:: State # space _ before -> String (9148.0) -
JSON 形式の文字列中で JavaScript のオブジェクトを表す部分にある ':' の 前に挿入する文字列を返します。
...ipt のオブジェクトを表す部分にある ':' の
前に挿入する文字列を返します。
//emlist[例][ruby]{
require "json"
json_state = JSON::State.new(space_before: "")
json_state.space_before # => ""
puts JSON.generate([1, 2, { name: "tanaka", age: 19 }], json_state)......# => [1,2,{"name":"tanaka","age":19}]
json_state = JSON::State.new(space_before: " ")
json_state.space_before # => " "
puts JSON.generate([1, 2, { name: "tanaka", age: 19 }], json_state)
# => [1,2,{"name" :"tanaka","age" :19}]
//}...