From cc788e98f4a739f450f487f6a7c758990128a698 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Sun, 23 Jun 2024 20:53:53 -0400 Subject: [PATCH] using in the type --- CMakeLists.txt | 2 +- include/blt/std/types.h | 22 ++++++++++++++++++++++ libraries/parallel-hashmap | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8aaf141..3b1ef6e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/include/blt/std/types.h b/include/blt/std/types.h index fa7128d..b8e4a0a 100644 --- a/include/blt/std/types.h +++ b/include/blt/std/types.h @@ -49,6 +49,8 @@ namespace blt template 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& a, const integer_type& b) + { + return a.id == b.id; + } + + friend bool operator!=(const integer_type& a, const integer_type& b) + { + return a.id != b.id; + } + + friend bool operator<(const integer_type& a, const integer_type& b) + { + return a.id < b.id; + } + + friend bool operator>(const integer_type& a, const integer_type& b) + { + return a.id > b.id; + } }; } diff --git a/libraries/parallel-hashmap b/libraries/parallel-hashmap index d88c5e1..1036816 160000 --- a/libraries/parallel-hashmap +++ b/libraries/parallel-hashmap @@ -1 +1 @@ -Subproject commit d88c5e15079047777b418132ece5879e7c9aaa2b +Subproject commit 10368163ab1f4367d2f0685b5928b1c973ebd1ec