tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
regular_invocable.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2023 Tobias Hienzsch
3
4#ifndef TETL_CONCEPTS_REGULAR_INVOCABLE_HPP
5#define TETL_CONCEPTS_REGULAR_INVOCABLE_HPP
6
7#include <etl/_concepts/invocable.hpp>
8
9namespace etl {
10
11/// \ingroup concepts
12template <typename F, typename... Args>
13concept regular_invocable = etl::invocable<F, Args...>;
14
15} // namespace etl
16
17#endif // TETL_CONCEPTS_REGULAR_INVOCABLE_HPP
Definition adjacent_find.hpp:9