1fe6060f1SDimitry Andric //===----------------------------------------------------------------------===//
2fe6060f1SDimitry Andric //
3fe6060f1SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4fe6060f1SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
5fe6060f1SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6fe6060f1SDimitry Andric //
7fe6060f1SDimitry Andric //===----------------------------------------------------------------------===//
8fe6060f1SDimitry Andric
9fe6060f1SDimitry Andric #ifndef _LIBCPP___ALGORITHM_FILL_H
10fe6060f1SDimitry Andric #define _LIBCPP___ALGORITHM_FILL_H
11fe6060f1SDimitry Andric
12fe6060f1SDimitry Andric #include <__algorithm/fill_n.h>
1304eeddc0SDimitry Andric #include <__config>
14fe6060f1SDimitry Andric #include <__iterator/iterator_traits.h>
15fe6060f1SDimitry Andric
16fe6060f1SDimitry Andric #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
17fe6060f1SDimitry Andric # pragma GCC system_header
18fe6060f1SDimitry Andric #endif
19fe6060f1SDimitry Andric
20fe6060f1SDimitry Andric _LIBCPP_BEGIN_NAMESPACE_STD
21fe6060f1SDimitry Andric
2261cfbce3SDimitry Andric // fill isn't specialized for std::memset, because the compiler already optimizes the loop to a call to std::memset.
2361cfbce3SDimitry Andric
24fe6060f1SDimitry Andric template <class _ForwardIterator, class _Tp>
25*cb14a3feSDimitry Andric inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void
__fill(_ForwardIterator __first,_ForwardIterator __last,const _Tp & __value,forward_iterator_tag)26*cb14a3feSDimitry Andric __fill(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value, forward_iterator_tag) {
27fe6060f1SDimitry Andric for (; __first != __last; ++__first)
28753f127fSDimitry Andric *__first = __value;
29fe6060f1SDimitry Andric }
30fe6060f1SDimitry Andric
31fe6060f1SDimitry Andric template <class _RandomAccessIterator, class _Tp>
32*cb14a3feSDimitry Andric inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void
__fill(_RandomAccessIterator __first,_RandomAccessIterator __last,const _Tp & __value,random_access_iterator_tag)33*cb14a3feSDimitry Andric __fill(_RandomAccessIterator __first, _RandomAccessIterator __last, const _Tp& __value, random_access_iterator_tag) {
345f757f3fSDimitry Andric std::fill_n(__first, __last - __first, __value);
35fe6060f1SDimitry Andric }
36fe6060f1SDimitry Andric
37fe6060f1SDimitry Andric template <class _ForwardIterator, class _Tp>
38*cb14a3feSDimitry Andric inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void
fill(_ForwardIterator __first,_ForwardIterator __last,const _Tp & __value)39*cb14a3feSDimitry Andric fill(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value) {
405f757f3fSDimitry Andric std::__fill(__first, __last, __value, typename iterator_traits<_ForwardIterator>::iterator_category());
41fe6060f1SDimitry Andric }
42fe6060f1SDimitry Andric
43fe6060f1SDimitry Andric _LIBCPP_END_NAMESPACE_STD
44fe6060f1SDimitry Andric
45fe6060f1SDimitry Andric #endif // _LIBCPP___ALGORITHM_FILL_H
46