Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
PTL::JoinFunction< void, void > Struct Reference

#include <JoinFunction.hh>

Public Types

using Type = std::function<void()>
 
using Type
 

Public Member Functions

template<typename Func>
 JoinFunction (Func &&func)
 
void operator() ()
 
 JoinFunction (Func &&func)
 
void & operator() (Args &&... args)
 

Detailed Description

Definition at line 93 of file JoinFunction.hh.

Member Typedef Documentation

◆ Type [1/2]

using PTL::JoinFunction< void, void >::Type

Definition at line 44 of file JoinFunction.hh.

◆ Type [2/2]

using PTL::JoinFunction< void, void >::Type = std::function<void()>

Definition at line 96 of file JoinFunction.hh.

Constructor & Destructor Documentation

◆ JoinFunction() [1/2]

template<typename Func>
PTL::JoinFunction< void, void >::JoinFunction ( Func && func)
inline

Definition at line 102 of file JoinFunction.hh.

◆ JoinFunction() [2/2]

PTL::JoinFunction< void, void >::JoinFunction ( Func && func)
inline

Definition at line 50 of file JoinFunction.hh.

51 : m_func(std::forward<Func>(func))
52 {}

Member Function Documentation

◆ operator()() [1/2]

void PTL::JoinFunction< void, void >::operator() ( )
inline

Definition at line 106 of file JoinFunction.hh.

106{ m_func(); }

◆ operator()() [2/2]

void & PTL::JoinFunction< void, void >::operator() ( Args &&... args)
inline

Definition at line 55 of file JoinFunction.hh.

56 {
57 return std::move(m_func(std::forward<Args>(args)...));
58 }

The documentation for this struct was generated from the following file: