Iros
 
Loading...
Searching...
No Matches
make_decayed_tuple.h
Go to the documentation of this file.
1#pragma once
2
3#include "di/meta/util.h"
4#include "di/util/forward.h"
6
7namespace di::vocab {
8template<typename... Args>
9constexpr auto make_decayed_tuple(Args&&... args) {
10 return Tuple<meta::Decay<Args>...>(util::forward<Args>(args)...);
11}
12}
13
14namespace di {
16}
Definition tuple_forward_declaration.h:5
Definition lazy.h:165
constexpr auto make_decayed_tuple(Args &&... args)
Definition make_decayed_tuple.h:9
Definition zstring_parser.h:9