別のキーワード
ライブラリ
- ビルトイン (274)
- bigdecimal (12)
- ipaddr (28)
-
irb
/ output-method (12) - logger (9)
- mathn (3)
-
minitest
/ spec (1) -
minitest
/ unit (8) - mkmf (24)
- pathname (12)
-
rexml
/ document (84) -
rexml
/ sax2listener (24) - rss (24)
- rubygems (12)
-
rubygems
/ package / tar _ header (12) - shell (6)
-
shell
/ command-processor (12) -
shell
/ filter (6) - tmpdir (24)
-
webrick
/ httprequest (12) -
webrick
/ httpservlet / filehandler (24)
クラス
- BigDecimal (12)
- Bignum (60)
- Dir (24)
- File (12)
- Fixnum (108)
-
Gem
:: Package :: TarHeader (12) - IPAddr (28)
-
IRB
:: OutputMethod (12) - Logger (9)
-
MiniTest
:: Unit (6) -
MiniTest
:: Unit :: TestCase (1) - Module (1)
- Pathname (12)
-
REXML
:: Attribute (12) -
REXML
:: Attributes (12) -
REXML
:: Element (36) -
RSS
:: NSError (12) - Regexp (24)
-
RubyVM
:: InstructionSequence (12) - Shell (6)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (6) - String (40)
- Symbol (12)
-
WEBrick
:: HTTPRequest (12) -
WEBrick
:: HTTPServlet :: FileHandler (24)
モジュール
- Gem (12)
- Kernel (24)
-
MiniTest
:: Assertions (1) -
REXML
:: Namespace (24) -
REXML
:: SAX2Listener (24)
キーワード
- % (6)
- & (6)
- * (6)
- ** (6)
- + (6)
- - (6)
- -@ (3)
-
/ (9) - < (3)
- << (6)
- <= (3)
- <=> (6)
- == (3)
- > (3)
- >= (3)
- >> (6)
- CHR2FIX (12)
- FIX2INT (12)
- FIX2LONG (12)
- FIX2UINT (12)
- FIX2ULONG (12)
- FIXABLE (12)
- FIXEDENCODING (12)
-
FIXNUM
_ MAX (12) -
FIXNUM
_ MIN (12) -
FIXNUM
_ P (12) - Fixnum (9)
- INT2FIX (12)
- LONG2FIX (12)
- NEGFIXABLE (12)
- OverlappedPrefixError (12)
- POSFIXABLE (12)
-
SUPPORTS
_ INFO _ SIGNAL (1) - SYM2ID (12)
- [] (6)
- ^ (6)
-
_ assertions (1) - abs (6)
-
add
_ handler (12) -
add
_ namespace (12) -
assertion
_ count (1) - basename (42)
-
bit
_ length (3) -
create
_ makefile (12) -
delete
_ prefix (8) -
delete
_ prefix! (8) -
delete
_ suffix (8) -
delete
_ suffix! (8) - div (6)
- divmod (3)
-
end
_ prefix _ mapping (12) -
end
_ with? (6) - errors (1)
- even? (3)
- failures (1)
- fdiv (3)
-
fixed
_ encoding? (12) - fixpos (12)
- fixup (12)
-
infect
_ with _ assertions (1) - inspect (3)
-
install
_ files (12) -
install
_ system _ commands (6) - magnitude (6)
- mask (12)
- mktmpdir (24)
- modulo (6)
- namespace (12)
- new (9)
- odd? (3)
- ppx (12)
- prefix (68)
- prefix= (20)
- prefixes (24)
-
rb
_ ary _ entry (12) -
rb
_ ary _ new3 (12) -
rb
_ ary _ store (12) -
rb
_ catch (12) -
rb
_ exec _ arg _ fixup (1) -
rb
_ fix _ new (12) - remainder (3)
-
remove
_ handler (12) -
ruby 1
. 8 . 4 feature (12) -
ruby 1
. 9 feature (12) - run (1)
- size (6)
- skips (1)
-
start
_ prefix _ mapping (12) -
start
_ with? (14) - succ (3)
-
test
_ count (1) -
to
_ a (12) -
to
_ f (3) -
to
_ s (3) - tokfix (12)
- zero? (3)
- | (6)
- ~ (6)
検索結果
先頭5件
-
Gem
. # prefix -> String (6100.0) -
このライブラリがインストールされているディレクトリの親ディレクトリを返します。
このライブラリがインストールされているディレクトリの親ディレクトリを返します。 -
Gem
:: Package :: TarHeader # prefix -> String (6100.0) -
tar のヘッダに含まれる prefix を返します。
...tar のヘッダに含まれる prefix を返します。... -
IPAddr
# prefix -> Integer (6100.0) -
プリフィックス長をビット数で返します。
プリフィックス長をビット数で返します。 -
REXML
:: Attribute # prefix -> String (6100.0) -
属性の名前空間を返します。
...t.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] (6100.0) -
self の中で宣言されている prefix の集合を 文字列の配列で返します。
...self の中で宣言されている prefix の集合を
文字列の配列で返します。
self が属する要素より上位の要素で定義されているものは含みません。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root xmlns:foo="http://example.......org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='<'/>
</root>
EOS
a = doc.get_elements("/root/a").first
p doc.root.attributes.prefixes # => ["foo", "bar"]
p a.attributes.prefixes # => []
//}... -
REXML
:: Element # prefixes -> [String] (6100.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
:: Namespace # prefix -> String (6100.0) -
prefix (前置修飾子) を返します。
...prefix (前置修飾子) を返します。
@see REXML::Namespace#prefix=... -
REXML
:: Namespace # prefix=(value) (6100.0) -
prefix (前置修飾子) を設定します。
...prefix (前置修飾子) を設定します。
@param value prefix文字列
@see REXML::Namespace#prefix... -
RSS
:: NSError # prefix (6100.0) -
@todo
@todo