Searched defs:non_nullable_struct (Results 1 – 1 of 1) sorted by relevance
79 struct non_nullable_struct { struct80 int value = 0;83 constexpr non_nullable_struct(int value) in non_nullable_struct() argument88 constexpr int get() const { return value; } in get()89 constexpr int increment() { return ++value; } in increment()91 … constexpr bool operator==(const non_nullable_struct& other) const { return value == other.value; } in operator ==()92 … constexpr bool operator!=(const non_nullable_struct& other) const { return value != other.value; } in operator !=()
Completed in 49 milliseconds