Iros
 
Loading...
Searching...
No Matches
format_args.h
Go to the documentation of this file.
1#pragma once
2
3#include "di/meta/core.h"
4#include "di/types/size_t.h"
5
6namespace di::concepts {
7template<typename T>
8concept FormatArgs = requires(T const& args, size_t index) {
9 { args.size() } -> SameAs<size_t>;
10 args[index];
11};
12}
Definition format_args.h:8
Definition core.h:114
Definition any_storable.h:9