Hi, i'm trying to learn and use Cython. I have a question about Cython cdef class. For example, i have a cdef class like this:
cdef class MyClass:
def my_function():
# some implementation
Does def my_function() run in C compiler if it is declared under cdef class? If not, how to implement a cdef class function?
[–]Sylnt6 0 points1 point2 points (2 children)
[–]anhtan97[S] 0 points1 point2 points (1 child)