252件ヒット
[201-252件を表示]
(0.062秒)
ライブラリ
- ビルトイン (24)
- fileutils (12)
- json (24)
-
win32
/ registry (192)
モジュール
- FileUtils (12)
- JSON (24)
- Kernel (24)
-
Win32
:: Registry :: API (192)
キーワード
- CloseKey (12)
- CreateKey (12)
- DeleteKey (12)
- DeleteValue (12)
- EnumKey (12)
- EnumValue (12)
- FlushKey (12)
- OpenKey (12)
- QueryInfoKey (12)
- QueryValue (12)
- SetValue (12)
-
block
_ given? (12) - generate (12)
- iterator? (12)
- packdw (12)
- packqw (12)
-
remove
_ entry _ secure (12) - unpackdw (12)
- unpackqw (12)
- unparse (12)
検索結果
先頭5件
-
Win32
:: Registry :: API . # packqw(qw) (3002.0) -
@todo
@todo -
Win32
:: Registry :: API . # unpackdw(dw) (3002.0) -
@todo
@todo -
Win32
:: Registry :: API . # unpackqw(qw) (3002.0) -
@todo
@todo -
JSON
. # generate(object , state = nil) -> String (107.0) -
与えられたオブジェクトを一行の JSON 形式の文字列に変換して返します。
...er, a : or , delimiter (default: '')
: :space_before
a string that is put before a : pair delimiter (default: '')
: :object_nl
a string that is put at the end of a JSON object (default: '')
: :array_nl
a string that is put at the end of a JSON array (default: '')
: :check_circular
真を指......定した場合、生成するオブジェクトの循環をチェックします。
この動作がデフォルトです。
: :allow_nan
真を指定した場合、JSON::NaN, JSON::Infinity,
JSON::MinusInfinity を生成することを許すようになります。
偽を指定した場合......:MinusInfinity
を生成しようとした場合に発生します。
@raise JSON::CircularDatastructure 与えられたオブジェクトが循環参照を持つ場合に発生します。
//emlist[例][ruby]{
require "json"
JSON.generate([1, 2, { name: "tanaka", age: 19 }])
# => "[1,2,{\... -
JSON
. # unparse(object , state = nil) -> String (107.0) -
与えられたオブジェクトを一行の JSON 形式の文字列に変換して返します。
...er, a : or , delimiter (default: '')
: :space_before
a string that is put before a : pair delimiter (default: '')
: :object_nl
a string that is put at the end of a JSON object (default: '')
: :array_nl
a string that is put at the end of a JSON array (default: '')
: :check_circular
真を指......定した場合、生成するオブジェクトの循環をチェックします。
この動作がデフォルトです。
: :allow_nan
真を指定した場合、JSON::NaN, JSON::Infinity,
JSON::MinusInfinity を生成することを許すようになります。
偽を指定した場合......:MinusInfinity
を生成しようとした場合に発生します。
@raise JSON::CircularDatastructure 与えられたオブジェクトが循環参照を持つ場合に発生します。
//emlist[例][ruby]{
require "json"
JSON.generate([1, 2, { name: "tanaka", age: 19 }])
# => "[1,2,{\...