2013-01-02 5 views
17

C'è un modo per dire al compilatore Cython che param è la funzione. Qualcosa comeEsiste un tipo per la funzione in Cython?

cpdef float calc_class_re(list data, func callback) 
+0

Se tutto il resto fallisce, si potrebbe probabilmente portarsi dietro a un 'typedef' C. Tuttavia, potrebbe esserci un modo migliore, puro-Cython. – delnan

+0

Intendi una funzione python o una funzione c? il commento di "delnan" funzionerà per c quando la firma della funzione è nota. – shaunc

+0

Per una funzione 'cdef' o' cpdef', il functype stile C dovrebbe funzionare. Come 'ctypedef (* my_func_type) (object, int, float, str)'. È necessario utilizzare il tipo 'object' per le funzioni pure-python. –

risposta

27

Dovrebbe essere auto-esplicativo ..? :)

# Define a new type for a function-type that accepts an integer and 
# a string, returning an integer. 
ctypedef int (*f_type)(int, str) 

# Extern a function of that type from foo.h 
cdef extern from "foo.h": 
    int do_this(int, str) 

# Passing this function will not work. 
cpdef int do_that(int a, str b): 
    return 0 

# However, this will work. 
cdef int do_stuff(int a, str b): 
    return 0 

# This functio uses a function of that type. Note that it cannot be a 
# cpdef function because the function-type is not available from Python. 
cdef void foo(f_type f): 
    print f(0, "bar") 

# Works: 
foo(do_this) # the externed function 
foo(do_stuff) # the cdef function 

# Error: 
# Cannot assign type 'int (int, str, int __pyx_skip_dispatch)' to 'f_type' 
foo(do_that) # the cpdef function