るりまサーチ

最速Rubyリファレンスマニュアル検索!
96件ヒット [1-96件を表示] (0.030秒)
トップページ > クエリ:object[x] > クエリ:enum_for[x] > 種類:インスタンスメソッド[x]

別のキーワード

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

ライブラリ

クラス

検索結果

Object#enum_for(method = :each, *args) -> Enumerator (27109.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 (27109.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 (18119.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 (18119.0)

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

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

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

Object#to_enum(method = :each, *args) -> Enumerator (12009.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 (12009.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 (3019.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 (3019.0)

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

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

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