Embedded Template Library 1.0
Loading...
Searching...
No Matches
etl::closure< TReturn(TArg0, TArg1), TCallback > Class Template Reference

#include <closure.h>

Public Types

typedef TCallback callback_type

Public Member Functions

 closure (const callback_type &f, const TArg0 arg0, const TArg1 arg1)
TReturn operator() () const

Detailed Description

template<typename TReturn, typename TArg0, typename TArg1, typename TCallback>
class etl::closure< TReturn(TArg0, TArg1), TCallback >

Closure for binding two arguments to a callback and invoking it later.

Template Parameters
TReturnThe return type of the callback.
TArg0The type of the first argument.
TArg1The type of the second argument.
TCallbackThe callback type.

Constructor & Destructor Documentation

◆ closure()

template<typename TReturn, typename TArg0, typename TArg1, typename TCallback>
etl::closure< TReturn(TArg0, TArg1), TCallback >::closure ( const callback_type & f,
const TArg0 arg0,
const TArg1 arg1 )
inline

Construct a closure with a callback and its arguments.

Parameters
fThe callback to be invoked.
arg0The first argument to bind.
arg1The second argument to bind.

Member Function Documentation

◆ operator()()

template<typename TReturn, typename TArg0, typename TArg1, typename TCallback>
TReturn etl::closure< TReturn(TArg0, TArg1), TCallback >::operator() ( ) const
inline

Invoke the stored callback with the bound arguments.

Returns
The result of the callback invocation.

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