|
@@ -223,15 +223,6 @@ struct null_t {
|
|
|
return true;
|
|
return true;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- /**
|
|
|
|
|
- * @brief Compares two null objects.
|
|
|
|
|
- * @param other A null object.
|
|
|
|
|
- * @return False in all cases.
|
|
|
|
|
- */
|
|
|
|
|
- [[nodiscard]] constexpr bool operator!=([[maybe_unused]] const null_t other) const noexcept {
|
|
|
|
|
- return false;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
/**
|
|
/**
|
|
|
* @brief Compares a null object and an identifier of any type.
|
|
* @brief Compares a null object and an identifier of any type.
|
|
|
* @tparam Entity Type of identifier.
|
|
* @tparam Entity Type of identifier.
|
|
@@ -302,15 +293,6 @@ struct tombstone_t {
|
|
|
return true;
|
|
return true;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- /**
|
|
|
|
|
- * @brief Compares two tombstone objects.
|
|
|
|
|
- * @param other A tombstone object.
|
|
|
|
|
- * @return False in all cases.
|
|
|
|
|
- */
|
|
|
|
|
- [[nodiscard]] constexpr bool operator!=([[maybe_unused]] const tombstone_t other) const noexcept {
|
|
|
|
|
- return false;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
/**
|
|
/**
|
|
|
* @brief Compares a tombstone object and an identifier of any type.
|
|
* @brief Compares a tombstone object and an identifier of any type.
|
|
|
* @tparam Entity Type of identifier.
|
|
* @tparam Entity Type of identifier.
|