using in the type
parent
1ca46b9d7b
commit
cc788e98f4
|
@ -1,7 +1,7 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
include(cmake/color.cmake)
|
||||
|
||||
set(BLT_VERSION 0.17.16)
|
||||
set(BLT_VERSION 0.17.17)
|
||||
set(BLT_TEST_VERSION 0.0.1)
|
||||
|
||||
set(BLT_TARGET BLT)
|
||||
|
|
|
@ -49,6 +49,8 @@ namespace blt
|
|||
template<typename T>
|
||||
struct integer_type
|
||||
{
|
||||
using value_type = T;
|
||||
|
||||
T id;
|
||||
|
||||
integer_type() = default;
|
||||
|
@ -60,6 +62,26 @@ namespace blt
|
|||
{
|
||||
return id;
|
||||
}
|
||||
|
||||
friend bool operator==(const integer_type<T>& a, const integer_type<T>& b)
|
||||
{
|
||||
return a.id == b.id;
|
||||
}
|
||||
|
||||
friend bool operator!=(const integer_type<T>& a, const integer_type<T>& b)
|
||||
{
|
||||
return a.id != b.id;
|
||||
}
|
||||
|
||||
friend bool operator<(const integer_type<T>& a, const integer_type<T>& b)
|
||||
{
|
||||
return a.id < b.id;
|
||||
}
|
||||
|
||||
friend bool operator>(const integer_type<T>& a, const integer_type<T>& b)
|
||||
{
|
||||
return a.id > b.id;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit d88c5e15079047777b418132ece5879e7c9aaa2b
|
||||
Subproject commit 10368163ab1f4367d2f0685b5928b1c973ebd1ec
|
Loading…
Reference in New Issue