chromium/third_party/libc++/src/include/__memory/ranges_uninitialized_algorithms.h

// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#ifndef _LIBCPP___MEMORY_RANGES_UNINITIALIZED_ALGORITHMS_H
#define _LIBCPP___MEMORY_RANGES_UNINITIALIZED_ALGORITHMS_H

#include <__algorithm/in_out_result.h>
#include <__concepts/constructible.h>
#include <__config>
#include <__iterator/concepts.h>
#include <__iterator/incrementable_traits.h>
#include <__iterator/iter_move.h>
#include <__iterator/iterator_traits.h>
#include <__iterator/readable_traits.h>
#include <__memory/concepts.h>
#include <__memory/uninitialized_algorithms.h>
#include <__ranges/access.h>
#include <__ranges/concepts.h>
#include <__ranges/dangling.h>
#include <__type_traits/remove_reference.h>
#include <__utility/move.h>
#include <new>

#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
#  pragma GCC system_header
#endif

_LIBCPP_PUSH_MACROS
#include <__undef_macros>

_LIBCPP_BEGIN_NAMESPACE_STD

#if _LIBCPP_STD_VER >= 20

namespace ranges {

// uninitialized_default_construct

struct __uninitialized_default_construct {};

inline namespace __cpo {
inline constexpr auto uninitialized_default_construct =;
} // namespace __cpo

// uninitialized_default_construct_n

struct __uninitialized_default_construct_n {};

inline namespace __cpo {
inline constexpr auto uninitialized_default_construct_n =;
} // namespace __cpo

// uninitialized_value_construct

struct __uninitialized_value_construct {};

inline namespace __cpo {
inline constexpr auto uninitialized_value_construct =;
} // namespace __cpo

// uninitialized_value_construct_n

struct __uninitialized_value_construct_n {};

inline namespace __cpo {
inline constexpr auto uninitialized_value_construct_n =;
} // namespace __cpo

// uninitialized_fill

struct __uninitialized_fill {};

inline namespace __cpo {
inline constexpr auto uninitialized_fill =;
} // namespace __cpo

// uninitialized_fill_n

struct __uninitialized_fill_n {};

inline namespace __cpo {
inline constexpr auto uninitialized_fill_n =;
} // namespace __cpo

// uninitialized_copy

uninitialized_copy_result;

struct __uninitialized_copy {};

inline namespace __cpo {
inline constexpr auto uninitialized_copy =;
} // namespace __cpo

// uninitialized_copy_n

uninitialized_copy_n_result;

struct __uninitialized_copy_n {};

inline namespace __cpo {
inline constexpr auto uninitialized_copy_n =;
} // namespace __cpo

// uninitialized_move

uninitialized_move_result;

struct __uninitialized_move {};

inline namespace __cpo {
inline constexpr auto uninitialized_move =;
} // namespace __cpo

// uninitialized_move_n

uninitialized_move_n_result;

struct __uninitialized_move_n {};

inline namespace __cpo {
inline constexpr auto uninitialized_move_n =;
} // namespace __cpo

} // namespace ranges

#endif // _LIBCPP_STD_VER >= 20

_LIBCPP_END_NAMESPACE_STD

_LIBCPP_POP_MACROS

#endif // _LIBCPP___MEMORY_RANGES_UNINITIALIZED_ALGORITHMS_H