るりまサーチ

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

別のキーワード

  1. _builtin puts
  2. csv puts
  3. stringio puts
  4. zlib puts
  5. io puts

クラス

キーワード

検索結果

<< 1 2 > >>

Integer#times -> Enumerator (18135.0)

self 回だけ繰り返します。 self が正の整数でない場合は何もしません。

...ら self - 1 までの数値が渡されます。

//emlist[][ruby]{
3.times { puts "Hello, World!" } # Hello, World! と3行続いて表示される。
0.times { puts "Hello, World!" } # 何も表示されない。
5.times {|n| print n } # 01234 と表示される。
//}

@see Integer#...

Integer#times {|n| ... } -> self (18135.0)

self 回だけ繰り返します。 self が正の整数でない場合は何もしません。

...ら self - 1 までの数値が渡されます。

//emlist[][ruby]{
3.times { puts "Hello, World!" } # Hello, World! と3行続いて表示される。
0.times { puts "Hello, World!" } # 何も表示されない。
5.times {|n| print n } # 01234 と表示される。
//}

@see Integer#...

Enumerator#next -> object (39.0)

「次」のオブジェクトを返します。

...times do
puts
enum.next
end
# => 120
# 121
# 122
//}

//emlist[例2][ruby]{
str = "xyz"
enum = str.each_byte

begin
puts
enum.next while true
rescue StopIteration
puts
"iteration reached at end"
end
# => 120
# 121
# 122
# iteration reached at end
puts
...
...enum.next
#=> 再度 StopIteration 例外が発生
//}

//emlist[例3: Kernel.#loop は StopIteration を捕捉します。][ruby]{
str = "xyz"
enum = str.each_byte
loop do
puts
enum.next
end
# => 120
# 121
# 122
//}...

Thread::ConditionVariable#broadcast -> self (21.0)

状態変数を待っているスレッドをすべて再開します。再開された スレッドは Thread::ConditionVariable#wait で指定した mutex のロックを試みます。

...

//emlist[例][ruby]{
mutex = Mutex.new
cv = ConditionVariable.new
flg = true

3.times {
Thread.start {
mutex.synchronize {
puts
"a1"
while (flg)
cv.wait(mutex)
end
puts
"a2"
}
}
}

Thread.start {
mutex.synchronize {
flg = false
cv.broadcast...

Thread::ConditionVariable#signal -> self (21.0)

状態変数を待っているスレッドを1つ再開します。再開された スレッドは Thread::ConditionVariable#wait で指定した mutex のロックを試みます。

...

//emlist[例][ruby]{
mutex = Mutex.new
cv = ConditionVariable.new
flg = true

3.times {
Thread.start {
mutex.synchronize {
puts
"a1"
while (flg)
cv.wait(mutex)
end
puts
"a2"
}
}
}

Thread.start {
mutex.synchronize {
flg = false
cv.signal
}...

絞り込み条件を変える

Enumerator#with_object(obj) -> Enumerator (15.0)

繰り返しの各要素に obj を添えてブロックを繰り返し、obj を返り値として返します。

...]{
# 0,1,2 と呼びだす enumeratorを作る
to_three = Enumerator.new do |y|
3.times do |x|
y << x
end
end

to_three_with_string = to_three.with_object("foo")
to_three_with_string.each do |x,string|
puts
"#{string}: #{x}"
end
# => foo:0
# => foo:1
# => foo:2
//}

@param obj 繰り返し...

Enumerator#with_object(obj) {|(*args), memo_obj| ... } -> object (15.0)

繰り返しの各要素に obj を添えてブロックを繰り返し、obj を返り値として返します。

...]{
# 0,1,2 と呼びだす enumeratorを作る
to_three = Enumerator.new do |y|
3.times do |x|
y << x
end
end

to_three_with_string = to_three.with_object("foo")
to_three_with_string.each do |x,string|
puts
"#{string}: #{x}"
end
# => foo:0
# => foo:1
# => foo:2
//}

@param obj 繰り返し...

Object#enum_for(method = :each, *args) -> Enumerator (15.0)

Enumerator.new(self, method, *args) を返します。

...ば size * n を返す。
sz = size
sz * n if sz
end
end
each do |*val|
n.times { yield *val }
end
end
end

%i[hello world].repeat(2) { |w| puts w }
# => 'hello', 'hello', 'world', 'world'
enum = (1..14).repeat(3)
# => #<Enumerator: 1..14:repeat(3)>
enum.fir...

Object#enum_for(method = :each, *args) {|*args| ... } -> Enumerator (15.0)

Enumerator.new(self, method, *args) を返します。

...ば size * n を返す。
sz = size
sz * n if sz
end
end
each do |*val|
n.times { yield *val }
end
end
end

%i[hello world].repeat(2) { |w| puts w }
# => 'hello', 'hello', 'world', 'world'
enum = (1..14).repeat(3)
# => #<Enumerator: 1..14:repeat(3)>
enum.fir...

Object#to_enum(method = :each, *args) -> Enumerator (15.0)

Enumerator.new(self, method, *args) を返します。

...ば size * n を返す。
sz = size
sz * n if sz
end
end
each do |*val|
n.times { yield *val }
end
end
end

%i[hello world].repeat(2) { |w| puts w }
# => 'hello', 'hello', 'world', 'world'
enum = (1..14).repeat(3)
# => #<Enumerator: 1..14:repeat(3)>
enum.fir...

絞り込み条件を変える

<< 1 2 > >>