pineapple/src/common/concepts.h

36 lines
1 KiB
C
Raw Normal View History

2022-04-23 20:49:07 +02:00
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-12-28 16:15:37 +01:00
#pragma once
2022-10-26 20:53:02 +02:00
#include <iterator>
2020-12-28 16:15:37 +01:00
#include <type_traits>
namespace Common {
2022-10-26 20:53:02 +02:00
// Check if type satisfies the ContiguousContainer named requirement.
2020-12-28 16:15:37 +01:00
template <typename T>
2022-10-26 20:53:02 +02:00
concept IsContiguousContainer = std::contiguous_iterator<typename T::iterator>;
2020-12-28 16:15:37 +01:00
// TODO: Replace with std::derived_from when the <concepts> header
// is available on all supported platforms.
template <typename Derived, typename Base>
concept DerivedFrom = requires {
std::is_base_of_v<Base, Derived>;
std::is_convertible_v<const volatile Derived*, const volatile Base*>;
};
2020-12-30 02:38:14 +01:00
// TODO: Replace with std::convertible_to when libc++ implements it.
template <typename From, typename To>
concept ConvertibleTo = std::is_convertible_v<From, To>;
2022-10-20 03:19:05 +02:00
// No equivalents in the stdlib
template <typename T>
concept IsArithmetic = std::is_arithmetic_v<T>;
template <typename T>
concept IsIntegral = std::is_integral_v<T>;
2020-12-28 16:15:37 +01:00
} // namespace Common