るりまサーチ

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

別のキーワード

  1. string bytesize
  2. _builtin bytesize
  3. bytesize string

ライブラリ

検索結果

Enumerator#next -> object (8008.0)

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

...響があり得ます。

@raise StopIteration 列挙状態が既に最後へ到達しているとき
@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 = "xy...