るりまサーチ

最速Rubyリファレンスマニュアル検索!
2212件ヒット [1-100件を表示] (0.239秒)

別のキーワード

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

キーワード

検索結果

<< 1 2 3 ... > >>

RSS::Maker::RSS20::Items::Item::Enclosure#length (33203.0)

@todo

...@todo...

Thread::Queue#length -> Integer (30320.0)

キューの長さを返します。

...キューの長さを返します。

//emlist[例][ruby]{
r
equire '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
//}...

REXML::Parent#length -> Integer (30302.0)

保持している子ノードの数を返します。

保持している子ノードの数を返します。

Thread::SizedQueue#length -> Integer (30302.0)

キューの長さを返します。

キューの長さを返します。

RSS::Rss::Channel::Item::Enclosure#length (30203.0)

@todo

...@todo...

絞り込み条件を変える

String#length -> Integer (27320.0)

文字列の文字数を返します。バイト数を知りたいときは bytesize メソッドを使ってください。

...いときは bytesize メソッドを使ってください。

//emlist[例][ruby]{
"test".length # => 4
"test".size # => 4
"テスト".length # => 3
"テスト".size # => 3
"\x80\u3042".length # => 2
"\x80\u3042".size # => 2
//}

@see String#bytesize...

CSV::Row#length -> Integer (27318.0)

Array#length, Array#size に委譲します。

...Array#length, Array#size に委譲します。


@see Array#size...

REXML::Attributes#length -> Integer (27308.0)

属性の個数を返します。

...ます。


//emlist[][ruby]{
r
equire '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='&lt;'/>
</root>
EOS
a = doc.get_elements("/root/a").first

p a.attributes.length # => 3
//}...

Struct#length -> Integer (27308.0)

構造体のメンバの数を返します。

...述は Struct の下位クラスのインスタンスに対して呼び
出す事を想定しています。Struct.new は Struct の下位クラスを作成する点に
注意してください。

//emlist[例][ruby]{
Customer = Struct.new(:name, :address, :zip)
joe = Customer.new("Joe Smith", "12...
...3 Maple, Anytown NC", 12345)
joe.length #=> 3
//}...
<< 1 2 3 ... > >>