るりまサーチ

最速Rubyリファレンスマニュアル検索!
108件ヒット [1-100件を表示] (0.027秒)
トップページ > クエリ:object[x] > クエリ:enum_for[x] > ライブラリ:ビルトイン[x]

別のキーワード

  1. _builtin enum_for
  2. _builtin to_enum
  3. lazy enum_for
  4. object to_enum

クラス

キーワード

検索結果

<< 1 2 > >>

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

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

...文字列かシンボルです。
@param args 呼び出すメソッドに渡される引数です。

//emlist[][ruby]{
str = "xyz"

enum = str.enum_for(:each_byte)
p(a = enum.map{|b| '%02x' % b }) #=> ["78", "79", "7a"]

# protects an array from being modified
a = [1, 2, 3]
p(a.to_enum) #=> #<Enume...

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

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

...文字列かシンボルです。
@param args 呼び出すメソッドに渡される引数です。

//emlist[][ruby]{
str = "xyz"

enum = str.enum_for(:each_byte)
p(a = enum.map{|b| '%02x' % b }) #=> ["78", "79", "7a"]

# protects an array from being modified
a = [1, 2, 3]
p(a.to_enum) #=> #<Enume...

Enumerator::Lazy#enum_for(method = :each, *args) -> Enumerator::Lazy (18120.0)

Object#to_enum と同じですが、Enumerator::Lazy を返します。

...
Object
#to_enum と同じですが、Enumerator::Lazy を返します。

to_enum は「ブロック付きで呼ぶとループを実行し、ブロックを省略した場合は
Enumerator を返す」ようなメソッドを定義するときによく使われます。
このときに lazy 性が...

Enumerator::Lazy#enum_for(method = :each, *args) {|*args| block} -> Enumerator::Lazy (18120.0)

Object#to_enum と同じですが、Enumerator::Lazy を返します。

...
Object
#to_enum と同じですが、Enumerator::Lazy を返します。

to_enum は「ブロック付きで呼ぶとループを実行し、ブロックを省略した場合は
Enumerator を返す」ようなメソッドを定義するときによく使われます。
このときに lazy 性が...

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

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

...文字列かシンボルです。
@param args 呼び出すメソッドに渡される引数です。

//emlist[][ruby]{
str = "xyz"

enum = str.enum_for(:each_byte)
p(a = enum.map{|b| '%02x' % b }) #=> ["78", "79", "7a"]

# protects an array from being modified
a = [1, 2, 3]
p(a.to_enum) #=> #<Enume...

絞り込み条件を変える

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

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

...文字列かシンボルです。
@param args 呼び出すメソッドに渡される引数です。

//emlist[][ruby]{
str = "xyz"

enum = str.enum_for(:each_byte)
p(a = enum.map{|b| '%02x' % b }) #=> ["78", "79", "7a"]

# protects an array from being modified
a = [1, 2, 3]
p(a.to_enum) #=> #<Enume...

Enumerator::Lazy#to_enum(method = :each, *args) -> Enumerator::Lazy (3020.0)

Object#to_enum と同じですが、Enumerator::Lazy を返します。

...
Object
#to_enum と同じですが、Enumerator::Lazy を返します。

to_enum は「ブロック付きで呼ぶとループを実行し、ブロックを省略した場合は
Enumerator を返す」ようなメソッドを定義するときによく使われます。
このときに lazy 性が...

Enumerator::Lazy#to_enum(method = :each, *args) {|*args| block} -> Enumerator::Lazy (3020.0)

Object#to_enum と同じですが、Enumerator::Lazy を返します。

...
Object
#to_enum と同じですが、Enumerator::Lazy を返します。

to_enum は「ブロック付きで呼ぶとループを実行し、ブロックを省略した場合は
Enumerator を返す」ようなメソッドを定義するときによく使われます。
このときに lazy 性が...

Enumerator (20.0)

each 以外のメソッドにも Enumerable の機能を提供するためのラッパークラスです。 また、外部イテレータとしても使えます。

...いても each と同様に Enumerable の機能を利用できます。

Enumerator を生成するには Enumerator.newあるいは
Object
#to_enum, Object#enum_for を利用します。また、一部の
イテレータはブロックを渡さずに呼び出すと繰り返しを実行する代わ...
<< 1 2 > >>