528件ヒット
[1-100件を表示]
(0.050秒)
別のキーワード
種類
- インスタンスメソッド (314)
- 特異メソッド (69)
- 関数 (61)
- マクロ (60)
- 文書 (24)
ライブラリ
- ビルトイン (200)
- bigdecimal (12)
-
irb
/ output-method (12) - logger (9)
- pathname (12)
-
rexml
/ document (48) -
rexml
/ sax2listener (12) - shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6) - tmpdir (24)
-
webrick
/ httprequest (12) -
webrick
/ httpservlet / filehandler (24)
クラス
- BigDecimal (12)
- Bignum (60)
- Dir (24)
- File (12)
- Fixnum (84)
-
IRB
:: OutputMethod (12) - Logger (9)
- Pathname (12)
-
REXML
:: Attribute (12) -
REXML
:: Attributes (12) -
REXML
:: Element (24) - Regexp (12)
-
RubyVM
:: InstructionSequence (12) - Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) - String (8)
- Symbol (12)
-
WEBrick
:: HTTPRequest (12) -
WEBrick
:: HTTPServlet :: FileHandler (24)
モジュール
-
REXML
:: SAX2Listener (12)
キーワード
- % (6)
- & (6)
- * (6)
- ** (6)
- + (6)
- - (6)
-
/ (6) - < (3)
- << (6)
- <= (3)
- <=> (3)
- == (3)
- > (3)
- >= (3)
- >> (6)
- FIXABLE (12)
-
FIXNUM
_ P (12) - NEGFIXABLE (12)
- POSFIXABLE (12)
- SYM2ID (12)
- [] (3)
- ^ (6)
- abs (6)
-
add
_ handler (12) - basename (42)
-
bit
_ length (3) - div (6)
-
end
_ with? (6) - even? (3)
-
fixed
_ encoding? (12) - fixup (12)
- inspect (3)
- magnitude (6)
- mktmpdir (24)
- modulo (6)
- namespace (12)
- new (9)
- odd? (3)
- ppx (12)
- prefix (12)
- 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) - size (3)
-
start
_ prefix _ mapping (12) -
start
_ with? (14) - succ (3)
-
to
_ a (12) -
to
_ s (3) - zero? (3)
- | (6)
- ~ (6)
検索結果
先頭5件
-
BigDecimal
# fix -> BigDecimal (21201.0) -
self の整数部分を新しい BigDecimal オブジェクトにして返します。
...self の整数部分を新しい BigDecimal オブジェクトにして返します。... -
void rb
_ exec _ arg _ fixup(struct rb _ exec _ arg *e) (12300.0) -
この関数は deprecated です。
この関数は deprecated です。 -
VALUE rb
_ fix _ new(long v) (12200.0) -
-
int FIXABLE(long f) (12200.0)
-
f が Fixnum の範囲に収まっているなら真。
...f が Fixnum の範囲に収まっているなら真。
@see FIXNUM_MIN, FIXNUM_MAX, FIXNUM_P,
POSFIXABLE, NEGFIXABLE... -
int NEGFIXABLE(long f) (12200.0)
-
f が Fixnum の下限値以上ならば真。
...f が Fixnum の下限値以上ならば真。
@see FIXNUM_MIN, FIXNUM_MAX, FIXNUM_P,
FIXABLE, POSFIXABLE... -
int POSFIXABLE(long f) (12200.0)
-
f が Fixnum の上限値以下ならば真。
...f が Fixnum の上限値以下ならば真。
@see FIXNUM_MIN, FIXNUM_MAX, FIXNUM_P,
FIXABLE, NEGFIXABLE... -
Fixnum
# abs -> Fixnum | Bignum (9200.0) -
self の絶対値を返します。
self の絶対値を返します。 -
REXML
:: Attribute # prefix -> String (9112.0) -
属性の名前空間を返します。
...uby]{
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... -
Fixnum
# bit _ length -> Integer (9100.0) -
self を表すのに必要なビット数を返します。
...2**12-1).bit_length # => 13
(-2**12).bit_length # => 12
(-2**12+1).bit_length # => 12
-0x101.bit_length # => 9
-0x100.bit_length # => 8
-0xff.bit_length # => 8
-2.bit_length # => 1
-1.bit_length # => 0
0.bit_lengt......h # => 0
1.bit_length # => 1
0xff.bit_length # => 8
0x100.bit_length # => 9
(2**12-1).bit_length # => 12
(2**12).bit_length # => 13
(2**12+1).bit_length # => 13
@see Bignum#bit_length... -
REXML
:: Attributes # prefixes -> [String] (9100.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:/....../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 # => []
//}... -
WEBrick
:: HTTPRequest # fixup -> () (9100.0) -
リクエストの残りのエンティティボディを読み込みます。
リクエストの残りのエンティティボディを読み込みます。