Iros
 
Loading...
Searching...
No Matches
into_void.h
Go to the documentation of this file.
1#pragma once
2
3namespace di::function {
4namespace detail {
6 template<typename... Args>
7 constexpr void operator()(Args&&...) const {}
8 };
9}
10
11constexpr inline auto into_void = detail::IntoVoidFunction {};
12}
13
14namespace di {
16}
Definition bind_back.h:16
Definition as_bool.h:8
constexpr auto into_void
Definition into_void.h:11
Definition zstring_parser.h:9
constexpr void operator()(Args &&...) const
Definition into_void.h:7