// -*- 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 // SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. // //===----------------------------------------------------------------------===// #ifndef _LIBCUDACXX___ITERATOR_INSERT_ITERATOR_H #define _LIBCUDACXX___ITERATOR_INSERT_ITERATOR_H #include #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 // no system header #include #include #include #include #include _LIBCUDACXX_BEGIN_NAMESPACE_STD template using __insert_iterator_iter_t = typename _Container::iterator; _CCCL_SUPPRESS_DEPRECATED_PUSH template class _LIBCUDACXX_TEMPLATE_VIS insert_iterator #if _CCCL_STD_VER <= 2014 || !defined(_LIBCUDACXX_ABI_NO_ITERATOR_BASES) : public iterator #endif { _CCCL_SUPPRESS_DEPRECATED_POP protected: _Container* container; __insert_iterator_iter_t<_Container> iter; public: typedef output_iterator_tag iterator_category; typedef void value_type; #if _CCCL_STD_VER > 2017 typedef ptrdiff_t difference_type; #else typedef void difference_type; #endif typedef void pointer; typedef void reference; typedef _Container container_type; _LIBCUDACXX_INLINE_VISIBILITY _CCCL_CONSTEXPR_CXX20 insert_iterator(_Container& __x, __insert_iterator_iter_t<_Container> __i) : container(_CUDA_VSTD::addressof(__x)) , iter(__i) {} _LIBCUDACXX_INLINE_VISIBILITY _CCCL_CONSTEXPR_CXX20 insert_iterator& operator=(const typename _Container::value_type& __value) { iter = container->insert(iter, __value); ++iter; return *this; } _LIBCUDACXX_INLINE_VISIBILITY _CCCL_CONSTEXPR_CXX20 insert_iterator& operator=(typename _Container::value_type&& __value) { iter = container->insert(iter, _CUDA_VSTD::move(__value)); ++iter; return *this; } _LIBCUDACXX_INLINE_VISIBILITY _CCCL_CONSTEXPR_CXX20 insert_iterator& operator*() { return *this; } _LIBCUDACXX_INLINE_VISIBILITY _CCCL_CONSTEXPR_CXX20 insert_iterator& operator++() { return *this; } _LIBCUDACXX_INLINE_VISIBILITY _CCCL_CONSTEXPR_CXX20 insert_iterator& operator++(int) { return *this; } }; template inline _LIBCUDACXX_INLINE_VISIBILITY _CCCL_CONSTEXPR_CXX20 insert_iterator<_Container> inserter(_Container& __x, __insert_iterator_iter_t<_Container> __i) { return insert_iterator<_Container>(__x, __i); } _LIBCUDACXX_END_NAMESPACE_STD #endif // _LIBCUDACXX___ITERATOR_INSERT_ITERATOR_H