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

#include <closure.h>

Public Types

typedef etl::delegate< TReturn(TArg0, TArg1)> delegate_type

Public Member Functions

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

Detailed Description

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

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

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

Constructor & Destructor Documentation

◆ closure()

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

Construct a closure with a delegate and its arguments.

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

Member Function Documentation

◆ operator()()

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

Invoke the stored delegate with the bound arguments.

Returns
The result of the delegate invocation.

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