this post was submitted on 05 Aug 2024
14 points (93.8% liked)

C++

1760 readers
1 users here now

The center for all discussion and news regarding C++.

Rules

founded 1 year ago
MODERATORS
top 2 comments
sorted by: hot top controversial new old
[โ€“] [email protected] 2 points 2 months ago (1 children)

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?

[โ€“] [email protected] 1 points 2 months ago* (last edited 2 months ago)

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).