Difference between revisions of "Powers Of 2 Range Enumerable Mixin Assignment"

From CSE425S Wiki
Jump to navigation Jump to search
Line 1: Line 1:
In this studio we will evolve our code from our [[Powers_Of_2_Range_Enumerable|Powers of 2]] exercise to leverage class mixins.
+
In this studio we will evolve our code from our [[Powers_Of_2_Range_Assignment|Powers of 2]] exercise to leverage class mixins.
 
=Documentation To Invesigate=
 
=Documentation To Invesigate=
 
: [https://ruby-doc.org/core-3.1.1/Enumerable.html Enumerable]
 
: [https://ruby-doc.org/core-3.1.1/Enumerable.html Enumerable]

Revision as of 17:12, 11 April 2022

In this studio we will evolve our code from our Powers of 2 exercise to leverage class mixins.

Documentation To Invesigate

Enumerable

Implementation To Investigate (If Interested)

enum.c

Code To Modify

Add

include Enumerable

to your PowersOfTwoRange class definition.

Client

Test