2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-08-03 21:28:54 +10:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-10-26 00:41:54 -04:00
|
|
|
#include <iterator>
|
2020-08-03 21:28:54 +10:00
|
|
|
#include <type_traits>
|
|
|
|
|
2020-08-18 14:24:51 -04:00
|
|
|
namespace Common {
|
|
|
|
|
2022-10-26 00:41:54 -04:00
|
|
|
// Check if type satisfies the ContiguousContainer named requirement.
|
2020-08-03 21:28:54 +10:00
|
|
|
template <typename T>
|
2022-10-26 00:41:54 -04:00
|
|
|
concept IsContiguousContainer = std::contiguous_iterator<typename T::iterator>;
|
2020-08-03 21:28:54 +10:00
|
|
|
|
|
|
|
} // namespace Common
|