def jit(signature_or_function=None, locals=MappingProxyType({}), cache=False,
pipeline_class=None, boundscheck=None, **options):
"""
This decorator is used to compile a Python function into native code.
Args
-----
signature_or_function:
The (optional) signature or list of signatures to be compiled.
If not passed, required signatures will be compiled when the
decorated function is called, depending on the argument values.
As a convenience, you can directly pass the function to be compiled
instead.
It is probably missing on purpose. The users should treat signatures as a positional argument.
Have you considered opening an issue on Github to update the documentation?