NAME
A member operator of omni::delegate
omni::delegate::operator()
A member operator of omni::delegate
#include <omni/delegate/0.hpp>inline ret_t omni::delegate::operator()()
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
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