---- kpp::same_as << Type System << Kpp c++ ----
kpp::same_as is a c++ concept of kpp c++ library. kpp::same_as is used for constraint that a type is the same as another type.
kpp::same_as Sig:
template <typename type_t20, typename type_t21> concept same_as = ...;
#include <kpp/types.hpp>
#include <kpp/types.hpp> int main() { static_assert(kpp::same_as<int, int>); }