るりまサーチ

最速Rubyリファレンスマニュアル検索!
1133件ヒット [1-100件を表示] (0.113秒)
トップページ > クエリ:l[x] > クエリ:>[x] > クエリ:root[x]

別のキーワード

  1. matrix l
  2. kernel $-l
  3. _builtin $-l
  4. lupdecomposition l
  5. l matrix

ライブラリ

モジュール

検索結果

<< 1 2 3 ... > >>

REXML::Element#root -> REXML::Element (21373.0)

self が属する文書のルート要素を返します。

...self が属する文書のルート要素を返します。

//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root>
<children>
<grandchildren />
</children>
</root>
EOS

children = doc.get_elements("/root/children").first
children.name # => "children"
children.root.name...
...# => "root"
grandchildren = doc.get_elements("/root/children/grandchildren").first
grandchildren.name # => "grandchildren"
grandchildren.root.name # => "root"
//}...

REXML::Document#root -> REXML::Element | nil (21301.0)

文書のルート要素を返します。

...文書のルート要素を返します。

文書がルート要素を持たない場合は nil を返します。...

Psych::TreeBuilder#root -> Psych::Nodes::Stream (21217.0)

AST の root を返します。

...AST の root を返します。

@see Psych::Nodes::Stream...

Win32::Registry::HKEY_CLASSES_ROOT -> Win32::Registry (12301.0)

@todo

...@todo

それぞれの定義済キーを表す Win32::Registry オブジェクトです。

詳細は以下の MSDN Library を参照してください。

* Predefined Keys: http://msdn.microsoft.com/library/en-us/sysinfo/base/predefined_keys.asp...

Net::IMAP::MailboxQuotaRoot#quotaroots -> [String] (12216.0)

問い合わせしたメールボックスの quota root 名を配列で返します。

...問い合わせしたメールボックスの quota root 名を配列で返します。

空の場合もありえます。...

絞り込み条件を変える

Net::IMAP::MailboxQuotaRoot#mailbox -> String (12200.0)

問い合わせしたメールボックスの名前を返します。

問い合わせしたメールボックスの名前を返します。

REXML::Element#delete_element(element) -> REXML::Element (9518.0)

子要素を削除します。

...を削除します。

element で削除する要素を指定できます。整数、文字列、REXML::Element
オブジェクトのいずれかが指定できます。

REXML::Element を指定すると、その要素が削除されます。
整数を指定すると、element 番目の要素を削...
...lement 削除する要素
@see REXML::Elements#delete

//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new '<a><b/><c/><c id="1"/><d/><c/></a>'
doc.delete_element("/a/b")
doc.to_s # => "<a><c/><c id='1'/><d/><c/></a>"
doc.delete_element("a/c[@id='1']")
doc.to_s # => "<a><c/><d/><c/>...
...</a>"
doc.root.delete_element("c")
doc.to_s # => "<a><d/><c/></a>"
doc.root.delete_element("c")
doc.to_s # => "<a><d/></a>"
doc.root.delete_element(1)
doc.to_s # => "<a/>"
//}...

REXML::Element#root_node -> REXML::Document | REXML::Node (9461.0)

self が属する文書のルートノードを返します。

...self が属する文書のルートノードを返します。

通常はその要素が属する文書(REXML::Document) オブジェクトが
返されます。

その要素が属する REXML::Document オブジェクトが存在しない
場合は木構造上のルートノードが返されま...
...emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root>
<children>
<grandchildren />
</children>
</root>
EOS

children = doc.get_elements("/root/children").first
children.name # => "children"
children.root_node == doc # => true
grandchildren = doc.get_elements("/root/child...
...ren/grandchildren").first
grandchildren.name # => "grandchildren"
grandchildren.root_node == doc # => true
//}...

FileUtils.#copy_file(src, dest, preserve = false, dereference_root = true) -> () (9313.0)

ファイル src の内容を dest にコピーします。

...のときは更新時刻と、
可能なら所有ユーザ・所有グループもコピーします。

@param dereference_root dereference_root が真のときは src についてだけシンボリックリンクの指す
内容をコピーします。偽の...

Gem::Security::Policy#verify_root -> bool (9301.0)

この値が真である場合は、証明書チェーンのルートを検証します。

この値が真である場合は、証明書チェーンのルートを検証します。

絞り込み条件を変える

<< 1 2 3 ... > >>