[ox/std] Add Union_c concept

(synced from 65e3153dda)
This commit is contained in:
2026-01-21 23:35:02 -06:00
parent d48b24e8b8
commit d2331f58d7
+4
View File
@@ -32,4 +32,8 @@ concept Integral_c = ox::is_integral_v<T>;
template<typename T, size_t max>
concept IntegerRange_c = ox::is_integer_v<T> && ox::MaxValue<T> >= max;
template<typename Union>
concept Union_c = is_union_v<Union>;
}