mini-llvm
0.1.0
Toggle main menu visibility
Loading...
Searching...
No Matches
ULE.h
Go to the documentation of this file.
1
// SPDX-License-Identifier: MIT
2
3
#pragma once
4
5
#include <concepts>
6
7
#include "
mini-llvm/common/ops/UGT.h
"
8
9
namespace
mini_llvm::ops
{
10
11
struct
ULE
{
12
template
<
typename
T>
13
requires
std::integral<T>
14
bool
operator()
(T x, T y)
const
noexcept
{
15
return
!
UGT
()(x, y);
16
}
17
};
18
19
}
// namespace mini_llvm::ops
UGT.h
mini_llvm::ops
Definition
Add.h:9
mini_llvm::ops::UGT
Definition
UGT.h:11
mini_llvm::ops::ULE
Definition
ULE.h:11
mini_llvm::ops::ULE::operator()
bool operator()(T x, T y) const noexcept
Definition
ULE.h:14
include
mini-llvm
common
ops
ULE.h
Generated by
1.17.0