VOOZH about

URL: https://www.geeksforgeeks.org/ruby/ruby-enumerable-each_witth_object-function/

⇱ Ruby | Enumerable each_witth_object() function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Ruby | Enumerable each_witth_object() function

Last Updated : 12 Jul, 2025
The each_with_object() of enumerable is an inbuilt method in Ruby iterates for every object and returns the initial object. It returns the enumerator, if no block is given.
Syntax: enu.each_with_object(obj) { |obj| block } Parameters: The function takes the block which is used to initialise the initial object. Return Value: It returns the enumerator, if no block is given, else it returns the initial object.
Example 1: Output:
[17, 19, 20]
Example 2: Output:
Enumerator: [7, 9, 10]:each_with_object([])
Comment