[ox/std] Add Union_c concept

This commit is contained in:
2026-01-21 23:35:02 -06:00
parent 53a224cf8f
commit 65e3153dda

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>;
}