You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Throughout the project, the team learned how to utilize a module within a class. We designed a class called MyList and incorporated a module named MyEnumerable, which implemented a limited set of functionalities from Enumerable.
Enumerable is a simple Array Manipulator App. This project is designed to help you learn how to use a module inside a class, and how to implement a subset of the functionality of Enumerable in Ruby.
In this project we learnt how to use a module inside the class. We created a class `my_list` and a module `my_enumerable`. The module `my_enumerable` implements a subset of the functionality of Enumerable.