mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-06 22:48:25 +01:00
20 lines
396 B
C++
20 lines
396 B
C++
/* This file is part of the mp project.
|
|
* Copyright (c) 2020 MerryMage
|
|
* SPDX-License-Identifier: 0BSD
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <mp/metavalue/value.h>
|
|
|
|
namespace mp {
|
|
|
|
/// Logical negation of metavalue V.
|
|
template<class V>
|
|
using logic_not = bool_value<!bool(V::value)>;
|
|
|
|
/// Logical negation of metavalue V.
|
|
template<class V>
|
|
constexpr bool logic_not_v = !bool(V::value);
|
|
|
|
} // namespace mp
|