NAME
A member function of omni::delegate6
OVERLOADS
omni::delegate6::bind
A member function of omni::delegate6
#include <omni/delegate/6.hpp>template < ret_t (*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t, p6_t) > static delegate6 omni::delegate6::bind()OVERLOADS
template < class T, ret_t (T::*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t, p6_t) > static delegate6 omni::delegate6::bind(T& obj)
template < class T, ret_t (T::*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t, p6_t) > static delegate6 omni::delegate6::bind(const T& obj)
template < class T, ret_t (T::*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t, p6_t) > static delegate6 omni::delegate6::bind(const T *const obj)
CONSIDERATIONS
If there is a function currently attached and still running when this call is made to rebind, the attached function will continue to live in an undefined state. It will not stop upon unbinding and will likely have a corrupted stack pointer.
top
If there is a function currently attached and still running when this call is made to rebind, the attached function will continue to live in an undefined state. It will not stop upon unbinding and will likely have a corrupted stack pointer.
top