We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
# cython: language=c++ # cython: language_level=3str from libcpp.typeinfo cimport type_info from cython.operator cimport typeid cdef fused C: int object cdef const type_info* i32 = &typeid(int) cdef f(C x): cdef const type_info* a = &typeid(C) return a == i32 def g(x): return (x, f(x))