PrevUpHomeNext

esv::uct_literals


Aestheticism is evil to the people.

NUMBER_uct

123_uct

123.321_uct

esv::uct_literals - operator""_uct

esv::uct_literals _uct makes a class type real number from basic number.

using namespace esv::uct_literals;

constexpr auto a = 123_uct;
constexpr auto b = 123.321_uct;

c++ example

#include <esvcpp/core.hpp>

using namespace esv::uct_literals;

int main()
{
	constexpr auto a = 123_uct;
	constexpr auto b = 123.321_uct;
	esv::print(a, b); // 123 123.321
}

See Also

esv::uxmax

esv::fxmax


PrevUpHomeNext

esv::print