るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
3件ヒット [1-3件を表示] (0.060秒)

別のキーワード

  1. etc sc_xopen_enh_i18n
  2. rsa n=
  3. rsa n
  4. openssl n=
  5. openssl n

検索結果

REXML::Comment#==(other) -> bool (63310.0)

other と内容(REXML::Comment#string)が同じならば真を返します。

other と内容(REXML::Comment#string)が同じならば真を返します。

REXML::Instruction#==(other) -> bool (63310.0)

other と self が同じ 処理命令である場合に真を返します。

other と self が同じ 処理命令である場合に真を返します。

同じとは、 REXML::Instruction#target と REXML::Instruction#content
が一致することを意味します。

@param other 比較対象

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

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

...XML::Document オブジェクトが存在しない
場合は木構造上のルートノードが返されます。

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

children = doc.get_elements("/root/children")...