1137件ヒット
[1101-1137件を表示]
(0.043秒)
別のキーワード
ライブラリ
- ビルトイン (865)
- csv (36)
-
fiddle
/ import (12) - matrix (24)
-
net
/ http (24) - rake (24)
-
rexml
/ document (36) - set (18)
- strscan (84)
- thread (14)
クラス
-
ARGF
. class (12) - Array (105)
- CSV (12)
-
CSV
:: Table (24) -
Encoding
:: Converter (24) - Enumerator (12)
- File (24)
-
File
:: Stat (36) - Hash (24)
- Integer (24)
- MatchData (24)
- Matrix (24)
- Method (48)
-
Net
:: HTTPGenericRequest (24) - Object (48)
- Proc (7)
-
REXML
:: Attributes (24) -
REXML
:: Elements (12) -
Rake
:: Application (12) - Random (12)
- Range (36)
-
RubyVM
:: InstructionSequence (12) - Set (24)
- String (223)
- StringScanner (84)
- Struct (36)
-
Thread
:: Queue (24) -
Thread
:: SizedQueue (70) - UnboundMethod (72)
モジュール
-
Fiddle
:: Importer (12) -
Rake
:: TaskManager (12)
キーワード
- << (7)
- == (24)
- [] (84)
- arity (24)
- bind (12)
- binmode (12)
-
bit
_ length (12) - blksize (12)
-
body
_ stream (12) -
body
_ stream= (12) - bsearch (48)
- byterindex (3)
- bytes (12)
- bytesize (12)
- clear (12)
- clone (12)
- close (10)
- deq (12)
-
each
_ grapheme _ cluster (16) -
each
_ index (24) -
enum
_ for (24) - eql? (24)
-
field
_ size _ limit (12) - hash (24)
- length (108)
-
matched
_ size (12) - max (12)
- max= (12)
- minor (24)
- name (12)
- pack (21)
- peek (12)
- peep (12)
- pop (12)
-
primitive
_ convert (24) -
rest
_ size (12) - restsize (12)
- rindex (12)
- shift (12)
- size? (12)
- slice (72)
-
synthesize
_ file _ task (12) - terminate (12)
-
to
_ a (12) -
to
_ enum (24) - transpose (12)
- truncate (12)
- unpack (12)
検索結果
先頭4件
-
UnboundMethod
# hash -> Integer (19.0) -
自身のハッシュ値を返します。
...自身のハッシュ値を返します。
//emlist[例][ruby]{
a = method(:==).unbind
b = method(:eql?).unbind
p a.eql? b # => true
p a.hash == b.hash # => true
p [a, b].uniq.size # => 1
//}... -
REXML
:: Attributes # length -> Integer (14.0) -
属性の個数を返します。
...属性の個数を返します。
//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 a.attribu... -
Struct
# length -> Integer (14.0) -
構造体のメンバの数を返します。
...に対して呼び
出す事を想定しています。Struct.new は Struct の下位クラスを作成する点に
注意してください。
//emlist[例][ruby]{
Customer = Struct.new(:name, :address, :zip)
joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
joe.length #=> 3
//}... -
Thread
:: Queue # length -> Integer (14.0) -
キューの長さを返します。
...キューの長さを返します。
//emlist[例][ruby]{
require 'thread'
q = Queue.new
[:resource1, :resource2, :resource3, nil].each { |r| q.push(r) }
q.length # => 4
//}......キューの長さを返します。
//emlist[例][ruby]{
q = Queue.new
[:resource1, :resource2, :resource3, nil].each { |r| q.push(r) }
q.length # => 4
//}...