omni::delegate6::operator()
NAME

omni::delegate6::operator()

A member operator of omni::delegate6

#include <omni/delegate/6.hpp>
inline ret_t omni::delegate6::operator()(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5, p6_t val6)

SYNOPSIS

Has the same effect as calling the invoke method. Overloading this operator makes it such that you can use the delegate as if it were a function. delegate<int> d = &some_func; printf("value = %d", d());

top

DESCRIPTION

No description.

top

RETURN VALUES

The return type specified at compile time

top

ERRORS

No errors specific to this context.

top

CONSIDERATIONS

No extra considerations.

top

PLATFORM SPECIFIC

Nothing platform specific to account for.

top

NOTES

No additional notes.

top

EXAMPLE
Currently no examples.
Visit the examples page for more.

top