DEBSOURCES
Skip Quicknav
sources / cython / 3.0.11%2Bdfsg-2 / docs / examples / userguide / fusedtypes / pointer.pyx
12345678910111213
ctypedef fused my_fused_type: int double cdef func(my_fused_type *a): print(a[0]) cdef int b = 3 cdef double c = 3.0 func(&b) func(&c)