dangling.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // -*- C++ -*-
  2. //===----------------------------------------------------------------------===//
  3. //
  4. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  5. // See https://llvm.org/LICENSE.txt for license information.
  6. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  7. //
  8. //===----------------------------------------------------------------------===//
  9. #ifndef _LIBCPP___RANGES_DANGLING_H
  10. #define _LIBCPP___RANGES_DANGLING_H
  11. #include <__config>
  12. #include <__ranges/access.h>
  13. #include <__ranges/concepts.h>
  14. #include <__type_traits/conditional.h>
  15. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  16. # pragma GCC system_header
  17. #endif
  18. _LIBCPP_BEGIN_NAMESPACE_STD
  19. #if _LIBCPP_STD_VER > 17
  20. namespace ranges {
  21. struct dangling {
  22. dangling() = default;
  23. _LIBCPP_HIDE_FROM_ABI constexpr dangling(auto&&...) noexcept {}
  24. };
  25. template <range _Rp>
  26. using borrowed_iterator_t = _If<borrowed_range<_Rp>, iterator_t<_Rp>, dangling>;
  27. // borrowed_subrange_t defined in <__ranges/subrange.h>
  28. } // namespace ranges
  29. #endif // _LIBCPP_STD_VER > 17
  30. _LIBCPP_END_NAMESPACE_STD
  31. #endif // _LIBCPP___RANGES_DANGLING_H