- 👋 Hi, I’m @1uigii
- 👀 I’m interested in systems programming, learning about web protocols, and writing rust, c, c++
- 🌱 I’m currently learning how to contribute to the open source community
- 📫 How to reach me 1uigi@protonmail.com (note the one)
- 😄 Pronouns: he/him
- ⚡ Fun fact: loading...
struct luigi_t {
public:
constexpr luigi_t(const luigi_t&) = default;
friend constexpr luigi_t operator""uigi(unsigned long long value);
static constexpr bool is_true(const luigi_t& l) {
return l.value == 1;
}
private:
unsigned long long value;
constexpr luigi_t(unsigned long long value) : value(value) { }
};
constexpr luigi_t operator""uigi(unsigned long long value) {
return luigi_t { value };
}
constexpr luigi_t luigi = 1uigi;
static_assert(luigi_t::is_true(luigi));