種類
- 定数 (132)
- インスタンスメソッド (48)
- モジュール関数 (48)
- 関数 (24)
- ライブラリ (12)
ライブラリ
- ビルトイン (24)
-
cgi
/ session (36) -
cgi
/ session / pstore (12) - json (24)
-
win32
/ registry (132)
クラス
-
CGI
:: Session :: FileStore (12) -
CGI
:: Session :: MemoryStore (12) -
CGI
:: Session :: NullStore (12) -
CGI
:: Session :: PStore (12)
モジュール
- JSON (24)
- Marshal (24)
-
Win32
:: Registry :: Constants (132)
キーワード
-
REG
_ FORCE _ RESTORE (12) -
REG
_ LEGAL _ OPTION (12) -
REG
_ NO _ LAZY _ FLUSH (12) -
REG
_ OPTION _ BACKUP _ RESTORE (12) -
REG
_ OPTION _ CREATE _ LINK (12) -
REG
_ OPTION _ NON _ VOLATILE (12) -
REG
_ OPTION _ OPEN _ LINK (12) -
REG
_ OPTION _ RESERVED (12) -
REG
_ OPTION _ VOLATILE (12) -
REG
_ REFRESH _ HIVE (12) -
REG
_ WHOLE _ HIVE _ VOLATILE (12) -
heredoc
_ restore (12) - load (24)
-
rb
_ thread _ restore _ context (12) -
rubygems
/ commands / pristine _ command (12)
検索結果
先頭5件
-
static void rb
_ thread _ restore _ context(rb _ thread _ t th , int exit) (6100.0) -
スレッドを切り替えるにあたって、切り替え先のスレッド th の コンテキストを評価器に復帰します。
スレッドを切り替えるにあたって、切り替え先のスレッド th の
コンテキストを評価器に復帰します。 -
Win32
:: Registry :: Constants :: REG _ OPTION _ BACKUP _ RESTORE (3101.0) -
@todo
@todo -
Win32
:: Registry :: Constants :: REG _ NO _ LAZY _ FLUSH (3001.0) -
@todo
@todo -
Win32
:: Registry :: Constants :: REG _ REFRESH _ HIVE (3001.0) -
@todo
@todo -
Win32
:: Registry :: Constants :: REG _ WHOLE _ HIVE _ VOLATILE (3001.0) -
@todo
@todo -
rubygems
/ commands / pristine _ command (6.0) -
インストールされている Gem パッケージを初期状態にするためのライブラリです。
...gem to restore to pristine condition (unless --all)
Summary:
Restores installed gems to pristine condition from files located in the gem
cache
Description:
The pristine command compares the installed gems with the contents of the
cached gem and restores any files... -
JSON
. # load(source , proc = nil , options = {}) -> object (1.0) -
与えられた JSON 形式の文字列を Ruby オブジェクトとしてロードして返します。
与えられた JSON 形式の文字列を Ruby オブジェクトとしてロードして返します。
proc として手続きオブジェクトが与えられた場合は、読み込んだオブジェクトを
引数にその手続きを呼び出します。
require 'json'
str=<<JSON
[1,2,3]
JSON
JSON.load(str) # => [1,2,3]
JSON.load(str, proc{|v| p v }) # => [1,2,3]
# 以下が表示される
# 1
# 2
# 3
# [1,2,3]
str=<<JSON
{ "a"... -
Marshal
. # load(port , proc = nil) -> object (1.0) -
port からマーシャルデータを読み込んで、元のオブジェクトと同 じ状態をもつオブジェクトを生成します。
port からマーシャルデータを読み込んで、元のオブジェクトと同
じ状態をもつオブジェクトを生成します。
proc として手続きオブジェクトが与えられた場合には読み込んだ
オブジェクトを引数にその手続きを呼び出します。
//emlist[例][ruby]{
str = Marshal.dump(["a", 1, 10 ** 10, 1.0, :foo])
p Marshal.load(str, proc {|obj| p obj})
# => "a"
# 1
# 10000000000
# 1.0
# :foo
# ["a", 1, 10000000000... -
Win32
:: Registry :: Constants :: REG _ LEGAL _ OPTION (1.0) -
@todo
@todo