using in the type

v1
Brett 2024-06-23 20:53:53 -04:00
parent 1ca46b9d7b
commit cc788e98f4
3 changed files with 24 additions and 2 deletions

View File

@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.20) cmake_minimum_required(VERSION 3.20)
include(cmake/color.cmake) 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_TEST_VERSION 0.0.1)
set(BLT_TARGET BLT) set(BLT_TARGET BLT)

View File

@ -49,6 +49,8 @@ namespace blt
template<typename T> template<typename T>
struct integer_type struct integer_type
{ {
using value_type = T;
T id; T id;
integer_type() = default; integer_type() = default;
@ -60,6 +62,26 @@ namespace blt
{ {
return id; 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