I have class like this:
struct InsertResult{
enum class Status{
INSERTED ,
UPDATED_IN_PLACE ,
REPLACED ,
SKIP_INSERTED ,
ERROR_NO_MEMORY ,
ERROR_INVALID ,
ERROR
};
bool ok;
Status status;
// more members here...
// spill the enum:
constexpr static auto INSERTED = Status::INSERTED ;
constexpr static auto UPDATED_IN_PLACE = Status::UPDATED_IN_PLACE ;
constexpr static auto REPLACED = Status::REPLACED ;
constexpr static auto SKIP_INSERTED = Status::SKIP_INSERTED ;
constexpr static auto ERROR_NO_MEMORY = Status::ERROR_NO_MEMORY ;
constexpr static auto ERROR_INVALID = Status::ERROR_INVALID ;
constexpr static auto ERROR = Status::ERROR ;
}
the idea of constexpr static members is to avoid double typing, e.g.
if (insert() == InsertResult::INSERTED){
// OK...
}
vs
if (insert() == InsertResult::Status::INSERTED){
// OK...
}
Any easy way to make it "better" without using C enum
?
In C++20 you would do
using enum Status;
.Pre-C++20 the best idea I have is writing a macro to generate your constexpr variables for you. The example below uses
macro_sequence_for
, a little library I made to simplify preprocessor loops.run on gcc.godbolt.org
Then this:
Expands to this:
And here's a longer version that lets you specify the enum constant values: