di 0.1.0
Loading...
Searching...
No Matches
forward_as_tuple.h
Go to the documentation of this file.
1#pragma once
2
3#include "di/util/forward.h"
5
6namespace di::vocab {
7template<typename... Args>
8constexpr auto forward_as_tuple(Args&&... args) -> Tuple<Args&&...> {
9 return Tuple<Args&&...>(util::forward<Args>(args)...);
10}
11}
12
13namespace di {
15}
Definition tuple.h:27
Definition lazy.h:165
constexpr auto forward_as_tuple(Args &&... args) -> Tuple< Args &&... >
Definition forward_as_tuple.h:8
Definition any_storable.h:9