Question: Could anyone answer this question about swift code please? Because not every raw value will return an enumeration case, the raw value initializer for an
Could anyone answer this question about swift code please?
Because not every raw value will return an enumeration case, the raw value initializer for an enumeration has to be a failable initializer.
Given the following:
var color = RainbowColor(rawValue: 6)
What type is color?
| Color |
| Color? |
| Color! |
| Int |
| Int? |
| Int! |
| RainbowColor |
| RainbowColor? |
| RainbowColor! |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
