NAME
A member operator of omni::delegate5
omni::delegate5::operator
A member operator of omni::delegate5
#include <omni/delegate/5.hpp>inline ret_t omni::delegate5::operator()
DESCRIPTION
Overloading this operator makes it such that you can use the delegate as if it were a function, for example:
delegate<int> d = &some_func; printf("value = %d", d());
top
Overloading this operator makes it such that you can use the delegate as if it were a function, for example:
delegate<int> d = &some_func; printf("value = %d", d());
top