// -*- 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_EXPERIMENTAL_ITERATOR #define _LIBCPP_EXPERIMENTAL_ITERATOR /* namespace std { namespace experimental { inline namespace fundamentals_v2 { template > class ostream_joiner { public: typedef charT char_type; typedef traits traits_type; typedef basic_ostream ostream_type; typedef output_iterator_tag iterator_category; typedef void value_type; typedef void difference_type; typedef void pointer; typedef void reference; ostream_joiner(ostream_type& s, const DelimT& delimiter); ostream_joiner(ostream_type& s, DelimT&& delimiter); template ostream_joiner& operator=(const T& value); ostream_joiner& operator*() noexcept; ostream_joiner& operator++() noexcept; ostream_joiner& operator++(int) noexcept; private: ostream_type* out_stream; // exposition only DelimT delim; // exposition only bool first_element; // exposition only }; template ostream_joiner, charT, traits> make_ostream_joiner(basic_ostream& os, DelimT&& delimiter); } // inline namespace fundamentals_v2 } // namespace experimental } // namespace std */ #include <__assert> // all public C++ headers provide the assertion handler #include <__memory/addressof.h> #include <__type_traits/decay.h> #include <__utility/forward.h> #include <__utility/move.h> #include #include // char_traits #include #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header #endif #if _LIBCPP_STD_VER > 11 _LIBCPP_BEGIN_NAMESPACE_LFTS template > class ostream_joiner { public: typedef _CharT char_type; typedef _Traits traits_type; typedef basic_ostream ostream_type; typedef output_iterator_tag iterator_category; typedef void value_type; typedef void difference_type; typedef void pointer; typedef void reference; ostream_joiner(ostream_type& __os, _Delim&& __d) : __output_iter_(_VSTD::addressof(__os)), __delim_(_VSTD::move(__d)), __first_(true) {} ostream_joiner(ostream_type& __os, const _Delim& __d) : __output_iter_(_VSTD::addressof(__os)), __delim_(__d), __first_(true) {} template ostream_joiner& operator=(const _Tp& __v) { if (!__first_) *__output_iter_ << __delim_; __first_ = false; *__output_iter_ << __v; return *this; } ostream_joiner& operator*() _NOEXCEPT { return *this; } ostream_joiner& operator++() _NOEXCEPT { return *this; } ostream_joiner& operator++(int) _NOEXCEPT { return *this; } private: ostream_type* __output_iter_; _Delim __delim_; bool __first_; }; template _LIBCPP_HIDE_FROM_ABI ostream_joiner::type, _CharT, _Traits> make_ostream_joiner(basic_ostream<_CharT, _Traits>& __os, _Delim && __d) { return ostream_joiner::type, _CharT, _Traits>(__os, _VSTD::forward<_Delim>(__d)); } _LIBCPP_END_NAMESPACE_LFTS #endif // _LIBCPP_STD_VER > 11 #if !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) && _LIBCPP_STD_VER <= 20 # include #endif #endif // _LIBCPP_EXPERIMENTAL_ITERATOR