| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #ifndef _LIBCUDACXX_EXPERIMENTAL_UNORDERED_SET |
| #define _LIBCUDACXX_EXPERIMENTAL_UNORDERED_SET |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include <experimental/__config> |
| #include <unordered_set> |
| #include <experimental/memory_resource> |
|
|
| #if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC) |
| # pragma GCC system_header |
| #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_CLANG) |
| # pragma clang system_header |
| #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC) |
| # pragma system_header |
| #endif |
|
|
| _LIBCUDACXX_BEGIN_NAMESPACE_LFTS_PMR |
|
|
| template <class _Value, |
| class _Hash = hash<_Value>, class _Pred = equal_to<_Value>> |
| using unordered_set = _CUDA_VSTD::unordered_set<_Value, _Hash, _Pred, |
| polymorphic_allocator<_Value>>; |
|
|
| template <class _Value, |
| class _Hash = hash<_Value>, class _Pred = equal_to<_Value>> |
| using unordered_multiset = _CUDA_VSTD::unordered_multiset<_Value, _Hash, _Pred, |
| polymorphic_allocator<_Value>>; |
|
|
| _LIBCUDACXX_END_NAMESPACE_LFTS_PMR |
|
|
| #endif |
|
|