るりまサーチ

最速Rubyリファレンスマニュアル検索!
92件ヒット [1-92件を表示] (0.151秒)
トップページ > クエリ:I[x] > クエリ:u[x] > クエリ:constants[x] > クエリ:create[x]

別のキーワード

  1. encoding koi8_u
  2. _builtin koi8_u
  3. matrix u
  4. util u
  5. lupdecomposition u

種類

ライブラリ

クラス

モジュール

検索結果

Win32::Registry.create(key, subkey, desired = KEY_ALL_ACCESS, opt = REG_OPTION_RESERVED) (21308.0)

@todo

...下にキー subkey を作成し,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)

サブキ...
...ーが既に存在していればキーはただ開かれ,Win32::Registry#created?
メソッドが false を返します。

ブロックが与えられると,キーは自動的に閉じられます。...

Win32::Registry.create(key, subkey, desired = KEY_ALL_ACCESS, opt = REG_OPTION_RESERVED) {|reg| ... } (21308.0)

@todo

...下にキー subkey を作成し,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)

サブキ...
...ーが既に存在していればキーはただ開かれ,Win32::Registry#created?
メソッドが false を返します。

ブロックが与えられると,キーは自動的に閉じられます。...

Win32::Registry::Constants::KEY_CREATE_SUB_KEY (12202.0)

@todo

@todo

セキュリティアクセスマスク。

Win32::Registry::Constants::KEY_QUERY_VALUE (12202.0)

@todo

@todo

セキュリティアクセスマスク。

Win32::Registry::Constants::REG_OPTION_BACKUP_RESTORE (12201.0)

@todo

@todo

絞り込み条件を変える

Win32::Registry::Constants::KEY_ENUMERATE_SUB_KEYS (9102.0)

@todo

@todo

セキュリティアクセスマスク。

Win32::Registry::Constants::KEY_EXECUTE (9102.0)

@todo

@todo

セキュリティアクセスマスク。

Win32::Registry::Constants::KEY_SET_VALUE (9102.0)

@todo

@todo

セキュリティアクセスマスク。

NEWS for Ruby 3.0.0 (3030.0)

NEWS for Ruby 3.0.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。

...NEWS for Ruby 3.0.0
このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。

それぞれのエントリーは参照情報があるため短いです。
十分な情報と共に書かれた全ての変更のリス...
...eyword arguments are now separated from positional arguments.
Code that resulted in deprecation warnings in Ruby 2.7 will now
result in ArgumentError or different behavior. 14183
* Procs accepting a single rest argument and keywords are no longer
subject to autosplatting. This now mat...
...s method definition is added. [EXPERIMENTAL]
16746

//emlist{
def square(x) = x * x
//}

* Interpolated String literals are no longer frozen when
`# frozen-string-literal: true` is used. 17104
* Magic comment `shareable_constant_value` added to freeze constants.
See {Magic Comments}...