mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-24 00:04:51 +01:00
20 lines
373 B
C++
20 lines
373 B
C++
/* This file is part of the mp project.
|
|
* Copyright (c) 2020 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <mp/metavalue/lift_value.h>
|
|
|
|
namespace mp {
|
|
|
|
/// Bitwise not of metavalue V
|
|
template<class V>
|
|
using bit_not = lift_value<~V::value>;
|
|
|
|
/// Bitwise not of metavalue V
|
|
template<class V>
|
|
constexpr auto bit_not_v = ~V::value;
|
|
|
|
} // namespace mp
|