functional.pxd 381 B

12345678910111213
  1. cdef extern from "<functional>" namespace "std" nogil:
  2. cdef cppclass function[T]:
  3. function() except +
  4. function(T*) except +
  5. function(function&) except +
  6. function(void*) except +
  7. function operator=(T*)
  8. function operator=(function&)
  9. function operator=(void*)
  10. function operator=[U](U)
  11. bint operator bool()