File: functional.pxd

package info (click to toggle)
cypari2 2.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 11,420 kB
  • sloc: python: 146,244; makefile: 35; ansic: 5
file content (13 lines) | stat: -rw-r--r-- 381 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
cdef extern from "<functional>" namespace "std" nogil:
    cdef cppclass function[T]:
        function() except +
        function(T*) except +
        function(function&) except +
        function(void*) except +

        function operator=(T*)
        function operator=(function&)
        function operator=(void*)
        function operator=[U](U)

        bint operator bool()