3#ifndef TETL_MEMORY_UNINITIALIZED_FILL_HPP
4#define TETL_MEMORY_UNINITIALIZED_FILL_HPP
12template <
typename ForwardIt,
typename T>
15#if defined(__cpp_exceptions)
18 for (; current != last; ++current) {
23 for (; first != current; ++first) {
29 for (
auto current = first; current != last; ++current) {
Definition adjacent_find.hpp:8
constexpr auto construct_at(T *p, Args &&... args) -> T *
Creates a T object initialized with arguments args... at given address p.
Definition construct_at.hpp:38
constexpr auto uninitialized_fill(ForwardIt first, ForwardIt last, T const &value) -> void
Definition uninitialized_fill.hpp:13
iterator_traits is the type trait class that provides uniform interface to the properties of LegacyIt...
Definition iterator_traits.hpp:47