• @bitcrafter
    link
    21 month ago

    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]
      link
      fedilink
      1
      edit-2
      28 days 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).

      • @bitcrafter
        link
        126 days ago

        Ah. In that case, I look forward to there being a new keyword in C++26 or later that you add to enforce that the enumeration really only does take one of the enumerated values, rather than just being a strongly typed number, since that seems to be the way that the language likes to do things…