PrevUpHomeNext

utx::not_same_as


utx::not_same_as - Utxcpp Basic Concepts

utx::not_same_as is a concept to identify if two types are not the same at compile-time.

c++ example

#include <utxcpp/core.hpp>

int main()
{
	static_assert(utx::not_same_as<utx::ix32, utx::i32>);
}

See Also

utx::same_as

utx::real_meric

utx::ix32

utx::same_assert


PrevUpHomeNext

E

U