Path: blob/main/contrib/llvm-project/libcxx/include/__utility/is_valid_range.h
35236 views
//===----------------------------------------------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef _LIBCPP___UTILITY_IS_VALID_RANGE_H9#define _LIBCPP___UTILITY_IS_VALID_RANGE_H1011#include <__algorithm/comp.h>12#include <__config>13#include <__type_traits/is_constant_evaluated.h>1415#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)16# pragma GCC system_header17#endif1819_LIBCPP_BEGIN_NAMESPACE_STD2021template <class _Tp>22_LIBCPP_CONSTEXPR_SINCE_CXX14 _LIBCPP_HIDE_FROM_ABI _LIBCPP_NO_SANITIZE("address") bool23__is_valid_range(const _Tp* __first, const _Tp* __last) {24if (__libcpp_is_constant_evaluated()) {25// If this is not a constant during constant evaluation, that is because __first and __last are not26// part of the same allocation. If they are part of the same allocation, we must still make sure they27// are ordered properly.28return __builtin_constant_p(__first <= __last) && __first <= __last;29}3031return !__less<>()(__last, __first);32}3334_LIBCPP_END_NAMESPACE_STD3536#endif // _LIBCPP___UTILITY_IS_VALID_RANGE_H373839