Iros
 
Loading...
Searching...
No Matches
iterator_reconstructible_container.h
Go to the documentation of this file.
1#pragma once
2
4#include "di/meta/language.h"
5#include "di/util/forward.h"
6
7namespace di::concepts {
8template<typename It, typename Sent = It>
9concept IteratorReconstructibleContainer = requires(It iterator, Sent sentinel) {
10 container::reconstruct(util::forward<It>(iterator), util::forward<Sent>(sentinel));
11};
12}
Definition iterator_reconstructible_container.h:9
Definition any_storable.h:9
constexpr auto reconstruct
Definition reconstruct.h:75