invocable.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //===----------------------------------------------------------------------===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. #ifndef _LIBCPP___CONCEPTS_INVOCABLE_H
  9. #define _LIBCPP___CONCEPTS_INVOCABLE_H
  10. #include <__config>
  11. #include <__functional/invoke.h>
  12. #include <__utility/forward.h>
  13. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  14. # pragma GCC system_header
  15. #endif
  16. _LIBCPP_BEGIN_NAMESPACE_STD
  17. #if _LIBCPP_STD_VER > 17
  18. // [concept.invocable]
  19. template<class _Fn, class... _Args>
  20. concept invocable = requires(_Fn&& __fn, _Args&&... __args) {
  21. _VSTD::invoke(_VSTD::forward<_Fn>(__fn), _VSTD::forward<_Args>(__args)...); // not required to be equality preserving
  22. };
  23. // [concept.regular.invocable]
  24. template<class _Fn, class... _Args>
  25. concept regular_invocable = invocable<_Fn, _Args...>;
  26. #endif // _LIBCPP_STD_VER > 17
  27. _LIBCPP_END_NAMESPACE_STD
  28. #endif // _LIBCPP___CONCEPTS_INVOCABLE_H