mirror of
https://github.com/azahar-emu/mcl
synced 2025-11-06 23:20:08 +01:00
15 lines
272 B
C++
15 lines
272 B
C++
// This file is part of the mcl project.
|
|
// Copyright (c) 2022 merryhime
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include "mcl/concepts/same_as.hpp"
|
|
|
|
namespace mcl {
|
|
|
|
template<typename T, typename... U>
|
|
concept IsAnyOf = (SameAs<T, U> || ...);
|
|
|
|
} // namespace mcl
|