るりまサーチ

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

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

キーワード

検索結果

<< < 1 2 3 4 ... > >>

RSS::Maker::XMLStyleSheets::XMLStyleSheet#href (12101.0)

@todo

...@todo...

RSS::Maker::XMLStyleSheets::XMLStyleSheet#href=() (12101.0)

@todo

...@todo...

CGI::QueryExtension#referer -> String (9201.0)

ENV['HTTP_REFERER'] を返します。

...ENV['HTTP_REFERER'] を返します。...

DRb::DRbObject#__drbref -> Integer|nil (9201.0)

リモートオブジェクトの識別子を返します。

...リモートオブジェクトの識別子を返します。

DRb::DRbObject.new_with_uri で取り出したフロントオブジェクトは
識別子を持たないため nil を返します。...

Gem::Package::TarHeader#prefix -> String (9201.0)

tar のヘッダに含まれる prefix を返します。

...
t
ar のヘッダに含まれる prefix を返します。...

絞り込み条件を変える

REXML::Attribute#prefix -> String (9201.0)

属性の名前空間を返します。

...

//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new( "elns:myelement" )
e.add_attribute( "nsa:a", "aval" )
e.add_attribute( "b", "bval" )
p e.attributes.get_attribute( "a" ).prefix # -> "nsa"
p e.attributes.get_attribute( "b" ).prefix # -> "elns"
a = REXML::Attribute.new( "x",...
..."y" )
p a.prefix # -> ""
//}...

REXML::Attributes#prefixes -> [String] (9201.0)

self の中で宣言されている prefix の集合を 文字列の配列で返します。

...prefix の集合を
文字列の配列で返します。

self が属する要素より上位の要素で定義されているものは含みません。

//emlist[][ruby]{
require 'rexml/document'

doc = REXML::Document.new(<<EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://ex...
...ample.org/bar">
<a foo:att='1' bar:att='2' att='&lt;'/>
</root>
EOS
a = doc.get_elements("/root/a").first

p doc.root.attributes.prefixes # => ["foo", "bar"]
p a.attributes.prefixes # => []
//}...

REXML::Element#prefixes -> [String] (9201.0)

self の文脈で定義されている prefix を文字列の配列を返します。

...る prefix を文字列の配列を返します。

対象の要素とその外側の要素で定義されている prefix を返します。

//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new("<a xmlns:x='1' xmlns:y='2'><b/><c xmlns:z='3'/></a>")
doc.elements['//b'].prefixes # =>...

REXML::SAX2Listener#end_prefix_mapping(prefix) -> () (9201.0)

名前空間の接頭辞(prefix)の適用範囲が終了したときに 呼び出されるコールバックメソッドです。

...名前空間の接頭辞(prefix)の適用範囲が終了したときに
呼び出されるコールバックメソッドです。

@param prefix 接頭辞の文字列が渡されます...
<< < 1 2 3 4 ... > >>