Iros
 
Loading...
Searching...
No Matches
cmp_not_equal.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace di::math {
6namespace detail {
8 template<concepts::Integer T, concepts::Integer U>
9 constexpr auto operator()(T a, U b) const -> bool {
10 return !cmp_equal(a, b);
11 }
12 };
13}
14
15constexpr inline auto cmp_not_equal = detail::CmpNotEqualFunction {};
16}
Definition abs.h:11
Definition abs.h:10
constexpr auto cmp_equal
Definition cmp_equal.h:23
constexpr auto cmp_not_equal
Definition cmp_not_equal.h:15
Definition cmp_not_equal.h:7
constexpr auto operator()(T a, U b) const -> bool
Definition cmp_not_equal.h:9