#include <JoinFunction.hh>
|
using | Type = std::function<void(JoinArg)> |
|
|
template<typename Func > |
| JoinFunction (Func &&func) |
|
template<typename... Args> |
void | operator() (Args &&... args) |
|
template<typename JoinArg>
struct PTL::JoinFunction< void, JoinArg >
Definition at line 67 of file JoinFunction.hh.
◆ Type
template<typename JoinArg >
◆ JoinFunction()
template<typename JoinArg >
template<typename Func >
Definition at line 76 of file JoinFunction.hh.
77 : m_func(std::forward<Func>(func))
78 {}
◆ operator()()
template<typename JoinArg >
template<typename... Args>
Definition at line 81 of file JoinFunction.hh.
82 {
83 m_func(std::forward<Args>(args)...);
84 }
The documentation for this struct was generated from the following file: