You must log in or register to comment.
Could someone explain to me what the value is in making it really easy to initialize an enum class with a value that is not one of the enumerated values?
Good question. My response would be: only where it is not used as an enum. The example in the article is one example (although I’ve never seen that idiom in the wild) or for doing things like bitfields (the opposite of the
to_underlying
section).