1151件ヒット
[101-200件を表示]
(0.057秒)
ライブラリ
- ビルトイン (431)
- bigdecimal (84)
-
cgi
/ html (36) - csv (3)
- date (4)
- ipaddr (28)
-
irb
/ context (48) -
irb
/ ext / save-history (48) -
minitest
/ spec (1) - mkmf (24)
-
net
/ imap (36) -
rdoc
/ rdoc (12) - resolv (12)
-
rexml
/ document (84) -
rexml
/ parsers / pullparser (12) -
rexml
/ parsers / ultralightparser (12) -
rexml
/ sax2listener (24) -
rinda
/ tuplespace (48) - rss (24)
-
rubygems
/ package / tar _ header (12) -
rubygems
/ source _ info _ cache (12) -
rubygems
/ source _ info _ cache _ entry (12) - scanf (36)
- socket (72)
- weakref (36)
クラス
-
ARGF
. class (96) - BasicObject (36)
- BasicSocket (12)
- BigDecimal (84)
- Binding (7)
-
CSV
:: Row (3) - Data (6)
- Date (2)
- DateTime (2)
-
Gem
:: Package :: TarHeader (12) -
Gem
:: SourceInfoCache (12) -
Gem
:: SourceInfoCacheEntry (12) - IO (12)
- IPAddr (28)
-
IRB
:: Context (72) - MatchData (6)
- Module (157)
-
Net
:: IMAP (36) - Object (24)
-
RDoc
:: RDoc (12) -
REXML
:: Attribute (12) -
REXML
:: Attributes (12) -
REXML
:: Element (36) -
REXML
:: Parsers :: PullEvent (12) -
REXML
:: Parsers :: UltraLightParser (12) -
RSS
:: Maker :: XMLStyleSheets :: XMLStyleSheet (24) - Range (36)
-
Resolv
:: DNS :: Resource :: SOA (12) -
Rinda
:: TupleSpace (48) - Socket (24)
- String (20)
- Struct (24)
- Symbol (6)
- Thread (24)
- Time (2)
- UDPSocket (36)
- WeakRef (36)
モジュール
-
CGI
:: HtmlExtension (36) -
IRB
:: HistorySavingAbility (24) - Kernel (36)
-
REXML
:: Namespace (24) -
REXML
:: SAX2Listener (24)
キーワード
- * (12)
- + (12)
- - (12)
-
/ (12) - === (12)
-
_ _ getobj _ _ (12) -
_ _ setobj _ _ (12) -
abort
_ on _ exception (12) -
abort
_ on _ exception= (12) -
add
_ namespace (12) -
alias
_ method (12) - base (12)
- bind (12)
- captures (2)
- connect (12)
-
create
_ makefile (12) - deconstruct (11)
-
deconstruct
_ keys (20) -
deprecate
_ constant (12) - div (12)
- document (12)
-
end
_ prefix _ mapping (12) -
event
_ type (12) - href (12)
- href= (12)
- include? (12)
-
infect
_ with _ assertions (1) -
inplace
_ mode (12) -
inplace
_ mode= (12) -
install
_ files (12) -
instance
_ eval (24) - list (12)
-
load
_ history (12) - lsub (12)
- mask (12)
- member? (12)
- namespace (12)
- notify (12)
- parse (12)
- prefix (44)
- prefix= (20)
- prefixes (24)
- print (12)
- printf (12)
- private (48)
-
prompt
_ c= (12) -
prompt
_ i= (12) -
prompt
_ n= (12) -
prompt
_ s= (12) - protected (36)
- public (36)
- putc (12)
- puts (12)
- quo (12)
- read (12)
-
read
_ all (12) - refine (12)
- refresh (36)
-
save
_ history (24) -
save
_ history= (12) - scanf (36)
- send (72)
- sign (12)
-
singleton
_ method _ undefined (12) -
source
_ location (7) -
start
_ prefix _ mapping (12) -
start
_ with? (14) - take (12)
-
to
_ a (6) -
to
_ write _ io (12) - values (6)
-
weakref
_ alive? (12) - write (12)
- xlist (12)
検索結果
先頭5件
-
IPAddr
# prefix=(prefixlen) (9201.0) -
プリフィックス長を prefixlen に設定します。
...プリフィックス長を prefixlen に設定します。
@param prefixlen 設定したいプリフィックス長をビット数で指定します。
@raise IPAddr::InvalidPrefixError 引数 prefixlen に整数以外のオブジェクトを指定した場合に発生します。... -
REXML
:: Namespace # prefix=(value) (9201.0) -
prefix (前置修飾子) を設定します。
...prefix (前置修飾子) を設定します。
@param value prefix文字列
@see REXML::Namespace#prefix... -
MatchData
# captures -> [String] (9125.0) -
$1, $2, ... を格納した配列を返します。
...す。
MatchData#to_a と異なり $& を要素に含みません。
グループにマッチした部分文字列がなければ対応する要素は nil になります。
//emlist[例][ruby]{
/(foo)(bar)(BAZ)?/ =~ "foobarbaz"
p $~.to_a # => ["foobar", "foo", "bar", nil]
p $~.captures #......=> ["foo", "bar", nil]
//}
@see MatchData#to_a, MatchData#named_captures, d:spec/pattern_matching#matching_non_primitive_objects... -
REXML
:: Attribute # prefix -> String (9125.0) -
属性の名前空間を返します。
...XML::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] (9125.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://exa......mple.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 # => []
//}... -
IRB
:: HistorySavingAbility # save _ history -> () (9107.0) -
irb のヒストリを履歴ファイルに保存します。
irb のヒストリを履歴ファイルに保存します。
@see lib:irb#history -
Gem
:: Package :: TarHeader # prefix -> String (9101.0) -
tar のヘッダに含まれる prefix を返します。
...tar のヘッダに含まれる prefix を返します。... -
IPAddr
# prefix -> Integer (9101.0) -
プリフィックス長をビット数で返します。
プリフィックス長をビット数で返します。 -
REXML
:: Namespace # prefix -> String (9101.0) -
prefix (前置修飾子) を返します。
...prefix (前置修飾子) を返します。
@see REXML::Namespace#prefix=... -
RSS
:: Maker :: XMLStyleSheets :: XMLStyleSheet # href (9101.0) -
@todo
@todo -
RSS
:: Maker :: XMLStyleSheets :: XMLStyleSheet # href=() (9101.0) -
@todo
@todo