jaulib v1.3.6
Jau Support Library (C++, Java, ..)
|
func::capval_target_t implementation for functions using a copy of a captured value, identifiable as func::target_type::capval via jau::function<R(A...)>::type(). More...
#include <functional3.hpp>
Public Member Functions | |
capval_target_t (const I &_data, R(*_function)(I &, A...)) noexcept | |
Utilizes copy-ctor from 'const I& _data'. | |
capval_target_t (I &&_data, R(*_function)(I &, A...)) noexcept | |
Utilizes move-ctor from moved 'I&& _data'. | |
R | operator() (A... args) override |
bool | operator== (const target_t< R, A... > &rhs) const noexcept override |
![]() | |
target_t (const target_t &o) noexcept=default | |
target_t (const target_t &o) noexcept=default | |
target_t (target_t &&o) noexcept=default | |
target_t (target_t &&o) noexcept=default | |
virtual | ~target_t () noexcept |
virtual | ~target_t () noexcept |
target_t & | operator= (const target_t &o) noexcept=default |
target_t & | operator= (const target_t &o) noexcept=default |
target_t & | operator= (target_t &&o) noexcept=default |
target_t & | operator= (target_t &&o) noexcept=default |
constexpr target_type | type () const noexcept |
Return the func::target_type of this invocation function wrapper. | |
constexpr target_type | type () const noexcept |
Return the func::target_type of this invocation function wrapper. | |
Additional Inherited Members | |
![]() | |
target_t (target_type ttype_) noexcept | |
target_t (target_type ttype_) noexcept | |
func::capval_target_t implementation for functions using a copy of a captured value, identifiable as func::target_type::capval via jau::function<R(A...)>::type().
R | function return type |
I | typename holding the captured data used by the function |
A | function arguments |
Definition at line 254 of file functional3.hpp.
|
inlinenoexcept |
Utilizes copy-ctor from 'const I& _data'.
Definition at line 261 of file functional3.hpp.
|
inlinenoexcept |
Utilizes move-ctor from moved 'I&& _data'.
Definition at line 266 of file functional3.hpp.
|
inlineoverridevirtual |
Implements jau::func::target_t< R, A... >.
Definition at line 270 of file functional3.hpp.
|
inlineoverridevirtualnoexcept |
Implements jau::func::target_t< R, A... >.
Definition at line 274 of file functional3.hpp.