Iros
 
Loading...
Searching...
No Matches
container.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace di::concepts {
7template<typename T>
8concept Container = requires(T& value) {
9 container::begin(value);
10 container::end(value);
11};
12}
Definition container.h:8
Definition any_storable.h:9
constexpr auto end
Definition end.h:47
constexpr auto begin
Definition begin.h:44