るりまサーチ

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

別のキーワード

  1. erb u
  2. util u
  3. matrix u
  4. _builtin koi8_u
  5. encoding koi8_u

検索結果

<< 1 2 3 ... > >>

Thread::Queue#length -> Integer (24108.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
//}...

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

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

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

REXML::Attributes#length -> Integer (21108.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='&lt;'/>
</root>
EOS
a = doc.get_elements("/root/a").first

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

Struct#length -> Integer (21108.0)

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

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

//emlist[例][ruby]{
Customer = Struct.new(:name, :address, :zip)
joe = Customer.new("Joe Sm...
...ith", "123 Maple, Anytown NC", 12345)
joe.length #=> 3
//}...

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

@todo

@todo

絞り込み条件を変える

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

@todo

@todo

Gem::SourceIndex#length -> Integer (21102.0)

自身に含まれる Gem の個数を返します。

自身に含まれる Gem の個数を返します。

String#length -> Integer (18132.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...

JSON::State#buffer_initial_length=(length) (12351.0)

This sets the initial length of the buffer to length, if length > 0, otherwise its value isn't changed.

...This sets the initial length of the buffer to length, if length > 0,
otherwise its value isn't changed....

JSON::State#buffer_initial_length -> Integer (12218.0)

This integer returns the current initial length of the buffer.

...This integer returns the current initial length of the buffer....

絞り込み条件を変える

<< 1 2 3 ... > >>