>>107732540
I CAME IN MY BALLS!
template<class T>
[[nodiscard]]
constexpr auto f(const T& t) noexcept
-> std::enable_if_t<
std::is_same_v<
decltype(std::as_const(t)),
const T&
>,
decltype(t)
>
{
return t;
}
Comment too long. Click here to view the full text.