di 0.1.0
Loading...
Searching...
No Matches
into_void.h
Go to the documentation of this file.
1#pragma once
2
3namespace di::function {
4namespace detail {
5 struct IntoVoidFunction {
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 as_bool.h:8
constexpr auto into_void
Definition into_void.h:11
Definition any_storable.h:9