Something to the affect of: ```c++ bounded_uint x {100, 200} Class bounded_int { Template <detail::integral T> Consteval bounded_int {T min, T max} { // Check bounds // Choose internal wrapper type? } }; ```