PrevUpHomeNext

esv::ix8


esv::ix8 - esv::i8

esv::ix8 is the 8 bit signed integral class type, it is "signed char" class type. All basic signed integral operators and bitwise operators are supported, and object-oriented class features are supported too.

esv::ix8 - esv::i8, the class type of esv::i8.

c++ example

#include <esvcpp/core.hpp>

int main()
{
	constexpr esv::ix8 x = 25;
	esv::print(esv::ix16{x});
}

See Also

esv::ix16

esv::ix32

esv::ix64

esv::ixmax


PrevUpHomeNext

E