// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include #include namespace Common { // Check if type satisfies the ContiguousContainer named requirement. template concept IsContiguousContainer = std::contiguous_iterator; } // namespace Common