123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- #ifndef _LIBCPP_CONCEPTS
- #define _LIBCPP_CONCEPTS
- #include <__assert> // all public C++ headers provide the assertion handler
- #include <__concepts/arithmetic.h>
- #include <__concepts/assignable.h>
- #include <__concepts/boolean_testable.h>
- #include <__concepts/class_or_enum.h>
- #include <__concepts/common_reference_with.h>
- #include <__concepts/common_with.h>
- #include <__concepts/constructible.h>
- #include <__concepts/convertible_to.h>
- #include <__concepts/copyable.h>
- #include <__concepts/derived_from.h>
- #include <__concepts/destructible.h>
- #include <__concepts/different_from.h>
- #include <__concepts/equality_comparable.h>
- #include <__concepts/invocable.h>
- #include <__concepts/movable.h>
- #include <__concepts/predicate.h>
- #include <__concepts/regular.h>
- #include <__concepts/relation.h>
- #include <__concepts/same_as.h>
- #include <__concepts/semiregular.h>
- #include <__concepts/swappable.h>
- #include <__concepts/totally_ordered.h>
- #include <__config>
- #include <version>
- #if _LIBCPP_STD_VER <= 20 && !defined(_LIPCPP_REMOVE_TRANSITIVE_INCLUDES)
- # include <type_traits>
- #endif
- #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
- # pragma GCC system_header
- #endif
- #endif
|