DEBSOURCES
Skip Quicknav
sources / cython / 3.0.11%2Bdfsg-2 / docs / examples / tutorial / external / libc_sin.py
12345
from cython.cimports.libc.math import sin @cython.cfunc def f(x: cython.double) -> cython.double: return sin(x * x)