// This file is part of the mcl project. // Copyright (c) 2022 merryhime // SPDX-License-Identifier: MIT #pragma once #include "mcl/mp/metavalue/value.hpp" namespace mcl::mp { /// Logical negation of metavalue V. template using logic_not = bool_value; /// Logical negation of metavalue V. template constexpr bool logic_not_v = !bool(V::value); } // namespace mcl::mp