るりまサーチ

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

別のキーワード

  1. _builtin numerator
  2. numeric numerator
  3. float numerator
  4. complex numerator
  5. integer numerator

キーワード

検索結果

Enumerator::ArithmeticSequence#begin -> Numeric (21104.0)

初項 (始端) を返します。

...初項 (始端) を返します。

@see Enumerator::ArithmeticSequence#end...

Enumerator::ArithmeticSequence#begin -> Numeric | nil (21104.0)

初項 (始端) を返します。

...初項 (始端) を返します。

@see Enumerator::ArithmeticSequence#end...

Enumerator#next -> object (3009.0)

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

...後へ到達しているとき
@see Enumerator#rewind

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

str.bytesize.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 StopI...

Enumerator::ArithmeticSequence#==(other) -> bool (3009.0)

Enumerable::ArithmeticSequence として等しいか判定します。

...Enumerable::ArithmeticSequence として等しいか判定します。

other が Enumerable::ArithmeticSequence で
begin
, end, step, exclude_end? が等しい時に
true を返します。

@param other 自身と比較する Enumerable::ArithmeticSequence...

Enumerator::ArithmeticSequence#end -> Numeric | nil (3009.0)

末項(終端)を返します。

...末項(終端)を返します。

@see Enumerator::ArithmeticSequence#begin...

絞り込み条件を変える

Enumerator::ArithmeticSequence#hash -> Integer (3009.0)

自身のハッシュ値を返します。

...自身のハッシュ値を返します。

begin
, end, step, exclude_end? が等しい Enumerable::ArithmeticSequence は
同じハッシュ値を返します。...