8f2dcd3e21
Merge commit '1925d4dcc65df310c7a6677ff2e9520c002fc031' into HEAD
20 lines
526 B
C++
20 lines
526 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 disjunction of metavalues Vs without short-circuiting or type presevation.
|
|
template<class... Vs>
|
|
using logic_or = bool_value<(false || ... || Vs::value)>;
|
|
|
|
/// Logical disjunction of metavalues Vs without short-circuiting or type presevation.
|
|
template<class... Vs>
|
|
constexpr bool logic_or_v = (false || ... || Vs::value);
|
|
|
|
} // namespace mp
|