Lowering Listing
================

This lists all lowering definition registered to the CPU target.
Each subsection corresponds to a Python function that is supported by numba
nopython mode. These functions have one or more lower implementation with
different signatures. The compiler chooses the most specific implementation
from all overloads.

``'array.argmax'``
------------------

=============  ==========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                
=============  ==========================================================================================================================================================================
  `(Array)`      ``array_argmax`` `numba/np/arraymath.py lines 706-774 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L706-L774>`_  
=============  ==========================================================================================================================================================================

``'array.argmin'``
------------------

=============  ==========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                
=============  ==========================================================================================================================================================================
  `(Array)`      ``array_argmin`` `numba/np/arraymath.py lines 633-703 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L633-L703>`_  
=============  ==========================================================================================================================================================================

``'array.argsort'``
-------------------

============================  =============================================================================================================================================================================
         Signature                                                                                             Definition                                                                                  
============================  =============================================================================================================================================================================
  `(Array, StringLiteral)`      ``array_argsort`` `numba/np/arrayobj.py lines 5120-5134 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L5120-L5134>`_  
============================  =============================================================================================================================================================================

``'array.astype'``
------------------

========================  ============================================================================================================================================================================
       Signature                                                                                           Definition                                                                                 
========================  ============================================================================================================================================================================
  `(Array, DTypeSpec)`      ``array_astype`` `numba/np/arrayobj.py lines 4070-4097 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4070-L4097>`_  
========================  ============================================================================================================================================================================

``'array.copy'``
----------------

=============  ==========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                
=============  ==========================================================================================================================================================================
  `(Array)`      ``array_copy`` `numba/np/arrayobj.py lines 3985-3987 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3985-L3987>`_  
=============  ==========================================================================================================================================================================

``'array.cumprod'``
-------------------

=============  ===========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                 
=============  ===========================================================================================================================================================================
  `(Array)`      ``array_cumprod`` `numba/np/arraymath.py lines 384-400 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L384-L400>`_  
=============  ===========================================================================================================================================================================

``'array.cumsum'``
------------------

=============  ==========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                
=============  ==========================================================================================================================================================================
  `(Array)`      ``array_cumsum`` `numba/np/arraymath.py lines 364-381 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L364-L381>`_  
=============  ==========================================================================================================================================================================

``'array.flatten'``
-------------------

=============  =============================================================================================================================================================================
  Signature                                                                                     Definition                                                                                  
=============  =============================================================================================================================================================================
  `(Array)`      ``array_flatten`` `numba/np/arrayobj.py lines 1766-1774 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L1766-L1774>`_  
=============  =============================================================================================================================================================================

``'array.item'``
----------------

=============  ======================================================================================================================================================================
  Signature                                                                                  Definition                                                                              
=============  ======================================================================================================================================================================
  `(Array)`      ``array_item`` `numba/np/arrayobj.py lines 521-533 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L521-L533>`_  
=============  ======================================================================================================================================================================

``'array.itemset'``
-------------------

==================  =========================================================================================================================================================================
    Signature                                                                                      Definition                                                                                
==================  =========================================================================================================================================================================
  `(Array, any)`      ``array_itemset`` `numba/np/arrayobj.py lines 536-550 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L536-L550>`_  
==================  =========================================================================================================================================================================

``'array.max'``
---------------

=============  =======================================================================================================================================================================
  Signature                                                                                  Definition                                                                               
=============  =======================================================================================================================================================================
  `(Array)`      ``array_max`` `numba/np/arraymath.py lines 550-630 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L550-L630>`_  
=============  =======================================================================================================================================================================

``'array.mean'``
----------------

=============  ========================================================================================================================================================================
  Signature                                                                                   Definition                                                                               
=============  ========================================================================================================================================================================
  `(Array)`      ``array_mean`` `numba/np/arraymath.py lines 403-418 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L403-L418>`_  
=============  ========================================================================================================================================================================

``'array.min'``
---------------

=============  =======================================================================================================================================================================
  Signature                                                                                  Definition                                                                               
=============  =======================================================================================================================================================================
  `(Array)`      ``array_min`` `numba/np/arraymath.py lines 467-547 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L467-L547>`_  
=============  =======================================================================================================================================================================

``'array.nonzero'``
-------------------

=============  ===============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                   
=============  ===============================================================================================================================================================================
  `(Array)`      ``array_nonzero`` `numba/np/arraymath.py lines 3114-3170 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L3114-L3170>`_  
=============  ===============================================================================================================================================================================

``'array.prod'``
----------------

=============  ========================================================================================================================================================================
  Signature                                                                                   Definition                                                                               
=============  ========================================================================================================================================================================
  `(Array)`      ``array_prod`` `numba/np/arraymath.py lines 349-361 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L349-L361>`_  
=============  ========================================================================================================================================================================

``'array.ravel'``
-----------------

=============  ===========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                 
=============  ===========================================================================================================================================================================
  `(Array)`      ``array_ravel`` `numba/np/arrayobj.py lines 1735-1755 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L1735-L1755>`_  
=============  ===========================================================================================================================================================================

``'array.reshape'``
-------------------

========================  ====================================================================================================================================================================================
       Signature                                                                                               Definition                                                                                     
========================  ====================================================================================================================================================================================
    `(Array, *any)`         ``array_reshape_vararg`` `numba/np/arrayobj.py lines 1696-1699 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L1696-L1699>`_  
  `(Array, BaseTuple)`         ``array_reshape`` `numba/np/arrayobj.py lines 1631-1693 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L1631-L1693>`_      
========================  ====================================================================================================================================================================================

``'array.sort'``
----------------

=============  ==========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                
=============  ==========================================================================================================================================================================
  `(Array)`      ``array_sort`` `numba/np/arrayobj.py lines 5096-5106 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L5096-L5106>`_  
=============  ==========================================================================================================================================================================

``'array.std'``
---------------

=============  =======================================================================================================================================================================
  Signature                                                                                  Definition                                                                               
=============  =======================================================================================================================================================================
  `(Array)`      ``array_std`` `numba/np/arraymath.py lines 439-445 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L439-L445>`_  
=============  =======================================================================================================================================================================

``'array.sum'``
---------------

========================================  ==================================================================================================================================================================================
               Signature                                                                                                      Definition                                                                                    
========================================  ==================================================================================================================================================================================
               `(Array)`                         ``array_sum`` `numba/np/arraymath.py lines 161-174 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L161-L174>`_        
          `(Array, DTypeSpec)`                ``array_sum_dtype`` `numba/np/arraymath.py lines 290-303 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L290-L303>`_     
       `(Array, IntegerLiteral)`               ``array_sum_axis`` `numba/np/arraymath.py lines 306-346 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L306-L346>`_     
  `(Array, IntegerLiteral, DTypeSpec)`      ``array_sum_axis_dtype`` `numba/np/arraymath.py lines 247-287 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L247-L287>`_  
            `(Array, int64)`                   ``array_sum_axis`` `numba/np/arraymath.py lines 306-346 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L306-L346>`_     
      `(Array, int64, DTypeSpec)`           ``array_sum_axis_dtype`` `numba/np/arraymath.py lines 247-287 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L247-L287>`_  
========================================  ==================================================================================================================================================================================

``'array.take'``
----------------

========================  ============================================================================================================================================================================
       Signature                                                                                           Definition                                                                                 
========================  ============================================================================================================================================================================
    `(Array, Array)`        ``numpy_take_2`` `numba/np/arrayobj.py lines 3776-3799 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3776-L3799>`_  
  `(Array, BaseTuple)`      ``numpy_take_3`` `numba/np/arrayobj.py lines 3802-3822 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3802-L3822>`_  
   `(Array, Integer)`       ``numpy_take_1`` `numba/np/arrayobj.py lines 3763-3773 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3763-L3773>`_  
    `(Array, List)`         ``numpy_take_3`` `numba/np/arrayobj.py lines 3802-3822 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3802-L3822>`_  
========================  ============================================================================================================================================================================

``'array.transpose'``
---------------------

========================  ======================================================================================================================================================================================
       Signature                                                                                                Definition                                                                                      
========================  ======================================================================================================================================================================================
       `(Array)`               ``array_transpose`` `numba/np/arrayobj.py lines 1449-1451 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L1449-L1451>`_      
    `(Array, *any)`         ``array_transpose_vararg`` `numba/np/arrayobj.py lines 1524-1527 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L1524-L1527>`_  
  `(Array, BaseTuple)`      ``array_transpose_tuple`` `numba/np/arrayobj.py lines 1469-1521 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L1469-L1521>`_   
========================  ======================================================================================================================================================================================

``'array.var'``
---------------

=============  =======================================================================================================================================================================
  Signature                                                                                  Definition                                                                               
=============  =======================================================================================================================================================================
  `(Array)`      ``array_var`` `numba/np/arraymath.py lines 421-436 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L421-L436>`_  
=============  =======================================================================================================================================================================

``'array.view'``
----------------

========================  ==========================================================================================================================================================================
       Signature                                                                                          Definition                                                                                
========================  ==========================================================================================================================================================================
  `(Array, DTypeSpec)`      ``array_view`` `numba/np/arrayobj.py lines 1996-2021 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L1996-L2021>`_  
========================  ==========================================================================================================================================================================

``'complex.conjugate'``
-----------------------

===============  ==========================================================================================================================================================================================
   Signature                                                                                             Definition                                                                                        
===============  ==========================================================================================================================================================================================
  `(Complex)`      ``complex_conjugate_impl`` `numba/cpython/numbers.py lines 936-942 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L936-L942>`_  
   `(Float)`        ``real_conjugate_impl`` `numba/cpython/numbers.py lines 951-952 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L951-L952>`_    
  `(Integer)`       ``real_conjugate_impl`` `numba/cpython/numbers.py lines 951-952 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L951-L952>`_    
===============  ==========================================================================================================================================================================================

``'ffi.from_buffer'``
---------------------

==============  =======================================================================================================================================================================
  Signature                                                                                   Definition                                                                               
==============  =======================================================================================================================================================================
  `(Buffer)`      ``from_buffer`` `numba/misc/cffiimpl.py lines 12-22 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/misc/cffiimpl.py#L12-L22>`_  
==============  =======================================================================================================================================================================

``'getiter'``
-------------

==============================  ===============================================================================================================================================================================================================
          Signature                                                                                                               Definition                                                                                                   
==============================  ===============================================================================================================================================================================================================
          `(Buffer)`                                 ``getiter_array`` `numba/np/arrayobj.py lines 255-276 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L255-L276>`_                     
  `(DictItemsIterableType)`                 ``impl_iterable_getiter`` `numba/typed/dictobject.py lines 931-961 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/typed/dictobject.py#L931-L961>`_            
   `(DictKeysIterableType)`                 ``impl_iterable_getiter`` `numba/typed/dictobject.py lines 931-961 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/typed/dictobject.py#L931-L961>`_            
         `(DictType)`                         ``impl_dict_getiter`` `numba/typed/dictobject.py lines 964-995 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/typed/dictobject.py#L964-L995>`_              
  `(DictValuesIterableType)`                ``impl_iterable_getiter`` `numba/typed/dictobject.py lines 931-961 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/typed/dictobject.py#L931-L961>`_            
       `(IteratorType)`                        ``iterator_getiter`` `numba/cpython/iterators.py lines 12-15 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/iterators.py#L12-L15>`_                
           `(List)`                              ``getiter_list`` `numba/cpython/listobj.py lines 487-490 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L487-L490>`_                  
         `(ListType)`                         ``getiter_list`` `numba/typed/listobject.py lines 1502-1506 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/typed/listobject.py#L1502-L1506>`_               
      `(NamedUniTuple)`                       ``getiter_unituple`` `numba/cpython/tupleobj.py lines 140-156 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L140-L156>`_               
           `(Set)`                               ``getiter_set`` `numba/cpython/setobj.py lines 1211-1214 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1211-L1214>`_                 
         `(UniTuple)`                         ``getiter_unituple`` `numba/cpython/tupleobj.py lines 140-156 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L140-L156>`_               
       `(UnicodeType)`                        ``getiter_unicode`` `numba/cpython/unicode.py lines 2412-2433 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/unicode.py#L2412-L2433>`_              
    `(range_state_int32)`         ``make_range_impl.<locals>.getiter_range32_impl`` `numba/cpython/rangeobj.py lines 91-99 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L91-L99>`_  
    `(range_state_int64)`         ``make_range_impl.<locals>.getiter_range32_impl`` `numba/cpython/rangeobj.py lines 91-99 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L91-L99>`_  
    `(range_state_uint64)`        ``make_range_impl.<locals>.getiter_range32_impl`` `numba/cpython/rangeobj.py lines 91-99 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L91-L99>`_  
==============================  ===============================================================================================================================================================================================================

``'iternext'``
--------------

============================  =============================================================================================================================================================================================================
         Signature                                                                                                             Definition                                                                                                  
============================  =============================================================================================================================================================================================================
     `(ArrayIterator)`          ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
    `(DictIteratorType)`        ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
     `(EnumerateType)`          ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
       `(Generator)`            ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
        `(ListIter)`            ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
  `(ListTypeIteratorType)`      ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
     `(NumpyFlatType)`          ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
  `(NumpyNdEnumerateType)`      ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
    `(NumpyNdIndexType)`        ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
    `(NumpyNdIterType)`         ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
        `(SetIter)`             ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
      `(UniTupleIter)`          ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
  `(UnicodeIteratorType)`       ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
        `(ZipType)`             ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
    `(range_iter_int32)`        ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
    `(range_iter_int64)`        ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
   `(range_iter_uint64)`        ``iternext_impl.<locals>.outer.<locals>.wrapper`` `numba/core/imputils.py lines 329-343 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/imputils.py#L329-L343>`_  
============================  =============================================================================================================================================================================================================

``'list.append'``
-----------------

=================  ===============================================================================================================================================================================
    Signature                                                                                        Definition                                                                                   
=================  ===============================================================================================================================================================================
  `(List, any)`      ``list_append`` `numba/cpython/listobj.py lines 846-856 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L846-L856>`_  
=================  ===============================================================================================================================================================================

``'list.clear'``
----------------

=============  ==============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                  
=============  ==============================================================================================================================================================================
  `(List)`       ``list_clear`` `numba/cpython/listobj.py lines 858-863 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L858-L863>`_  
=============  ==============================================================================================================================================================================

``'list.copy'``
---------------

=============  =============================================================================================================================================================================
  Signature                                                                                     Definition                                                                                  
=============  =============================================================================================================================================================================
  `(List)`       ``list_copy`` `numba/cpython/listobj.py lines 865-870 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L865-L870>`_  
=============  =============================================================================================================================================================================

``'list.count'``
----------------

=================  ==============================================================================================================================================================================
    Signature                                                                                        Definition                                                                                  
=================  ==============================================================================================================================================================================
  `(List, any)`      ``list_count`` `numba/cpython/listobj.py lines 872-882 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L872-L882>`_  
=================  ==============================================================================================================================================================================

``'list.extend'``
-----------------

==========================  ===============================================================================================================================================================================
        Signature                                                                                             Definition                                                                                   
==========================  ===============================================================================================================================================================================
  `(List, IterableType)`      ``list_extend`` `numba/cpython/listobj.py lines 901-914 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L901-L914>`_  
==========================  ===============================================================================================================================================================================

``'list.index'``
----------------

===================================  ==============================================================================================================================================================================
             Signature                                                                                                 Definition                                                                                  
===================================  ==============================================================================================================================================================================
           `(List, any)`               ``list_index`` `numba/cpython/listobj.py lines 916-926 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L916-L926>`_  
      `(List, any, Integer)`           ``list_index`` `numba/cpython/listobj.py lines 928-944 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L928-L944>`_  
  `(List, any, Integer, Integer)`      ``list_index`` `numba/cpython/listobj.py lines 946-966 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L946-L966>`_  
===================================  ==============================================================================================================================================================================

``'list.insert'``
-----------------

==========================  ===============================================================================================================================================================================
        Signature                                                                                             Definition                                                                                   
==========================  ===============================================================================================================================================================================
  `(List, Integer, any)`      ``list_insert`` `numba/cpython/listobj.py lines 968-983 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L968-L983>`_  
==========================  ===============================================================================================================================================================================

``'list.pop'``
--------------

=====================  ==============================================================================================================================================================================
      Signature                                                                                          Definition                                                                                  
=====================  ==============================================================================================================================================================================
      `(List)`            ``list_pop`` `numba/cpython/listobj.py lines 985-997 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L985-L997>`_   
  `(List, Integer)`      ``list_pop`` `numba/cpython/listobj.py lines 999-1015 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L999-L1015>`_  
=====================  ==============================================================================================================================================================================

``'list.remove'``
-----------------

=================  ===================================================================================================================================================================================
    Signature                                                                                          Definition                                                                                     
=================  ===================================================================================================================================================================================
  `(List, any)`      ``list_remove`` `numba/cpython/listobj.py lines 1017-1028 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L1017-L1028>`_  
=================  ===================================================================================================================================================================================

``'list.reverse'``
------------------

=============  ====================================================================================================================================================================================
  Signature                                                                                         Definition                                                                                     
=============  ====================================================================================================================================================================================
  `(List)`       ``list_reverse`` `numba/cpython/listobj.py lines 1030-1038 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L1030-L1038>`_  
=============  ====================================================================================================================================================================================

``'not in'``
------------

================  ============================================================================================================================================================================
   Signature                                                                                       Definition                                                                                 
================  ============================================================================================================================================================================
  `(any, any)`      ``not_in`` `numba/cpython/builtins.py lines 392-398 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L392-L398>`_  
================  ============================================================================================================================================================================

``'np.random.beta'``
--------------------

=====================  ==========================================================================================================================================================================================
      Signature                                                                                                Definition                                                                                        
=====================  ==========================================================================================================================================================================================
  `(Float, Float)`       ``betavariate_impl`` `numba/cpython/randomimpl.py lines 599-604 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L599-L604>`_  
  `(any, any, any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_   
=====================  ==========================================================================================================================================================================================

``'np.random.binomial'``
------------------------

======================  ========================================================================================================================================================================================
      Signature                                                                                                Definition                                                                                       
======================  ========================================================================================================================================================================================
  `(Integer, Float)`      ``binomial_impl`` `numba/cpython/randomimpl.py lines 812-868 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L812-L868>`_   
  `(any, any, any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
======================  ========================================================================================================================================================================================

``'np.random.chisquare'``
-------------------------

================  ========================================================================================================================================================================================
   Signature                                                                                             Definition                                                                                       
================  ========================================================================================================================================================================================
   `(Float)`        ``chisquare_impl`` `numba/cpython/randomimpl.py lines 871-878 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L871-L878>`_  
  `(any, any)`      ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
================  ========================================================================================================================================================================================

``'np.random.exponential'``
---------------------------

================  ==========================================================================================================================================================================================
   Signature                                                                                              Definition                                                                                        
================  ==========================================================================================================================================================================================
      `()`          ``exponential_impl`` `numba/cpython/randomimpl.py lines 655-666 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L655-L666>`_  
   `(Float)`        ``exponential_impl`` `numba/cpython/randomimpl.py lines 643-653 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L643-L653>`_  
  `(any, any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_   
================  ==========================================================================================================================================================================================

``'np.random.f'``
-----------------

=====================  ========================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                       
=====================  ========================================================================================================================================================================================
  `(Float, Float)`           ``f_impl`` `numba/cpython/randomimpl.py lines 881-889 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L881-L889>`_      
  `(any, any, any)`      ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
=====================  ========================================================================================================================================================================================

``'np.random.gamma'``
---------------------

=====================  ===========================================================================================================================================================================================
      Signature                                                                                                Definition                                                                                         
=====================  ===========================================================================================================================================================================================
      `(Float)`          ``gammavariate_impl`` `numba/cpython/randomimpl.py lines 509-515 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L509-L515>`_  
  `(Float, Float)`       ``gammavariate_impl`` `numba/cpython/randomimpl.py lines 509-515 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L509-L515>`_  
  `(any, any, any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_    
=====================  ===========================================================================================================================================================================================

``'np.random.geometric'``
-------------------------

================  ========================================================================================================================================================================================
   Signature                                                                                             Definition                                                                                       
================  ========================================================================================================================================================================================
   `(Float)`        ``geometric_impl`` `numba/cpython/randomimpl.py lines 892-915 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L892-L915>`_  
  `(any, any)`      ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
================  ========================================================================================================================================================================================

``'np.random.gumbel'``
----------------------

=====================  ========================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                       
=====================  ========================================================================================================================================================================================
  `(Float, Float)`        ``gumbel_impl`` `numba/cpython/randomimpl.py lines 918-928 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L918-L928>`_    
  `(any, any, any)`      ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
=====================  ========================================================================================================================================================================================

``'np.random.hypergeometric'``
------------------------------

=================================  =============================================================================================================================================================================================
            Signature                                                                                                       Definition                                                                                          
=================================  =============================================================================================================================================================================================
  `(Integer, Integer, Integer)`      ``hypergeometric_impl`` `numba/cpython/randomimpl.py lines 931-954 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L931-L954>`_  
     `(any, any, any, any)`            ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_     
=================================  =============================================================================================================================================================================================

``'np.random.laplace'``
-----------------------

=====================  ========================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                       
=====================  ========================================================================================================================================================================================
        `()`              ``laplace_impl`` `numba/cpython/randomimpl.py lines 957-973 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L957-L973>`_   
      `(Float)`           ``laplace_impl`` `numba/cpython/randomimpl.py lines 957-973 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L957-L973>`_   
  `(Float, Float)`        ``laplace_impl`` `numba/cpython/randomimpl.py lines 957-973 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L957-L973>`_   
  `(any, any, any)`      ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
=====================  ========================================================================================================================================================================================

``'np.random.logistic'``
------------------------

=====================  ========================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                       
=====================  ========================================================================================================================================================================================
        `()`             ``logistic_impl`` `numba/cpython/randomimpl.py lines 976-989 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L976-L989>`_   
      `(Float)`          ``logistic_impl`` `numba/cpython/randomimpl.py lines 976-989 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L976-L989>`_   
  `(Float, Float)`       ``logistic_impl`` `numba/cpython/randomimpl.py lines 976-989 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L976-L989>`_   
  `(any, any, any)`      ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
=====================  ========================================================================================================================================================================================

``'np.random.lognormal'``
-------------------------

=====================  ===========================================================================================================================================================================================
      Signature                                                                                                Definition                                                                                         
=====================  ===========================================================================================================================================================================================
        `()`             ``np_lognormal_impl`` `numba/cpython/randomimpl.py lines 668-675 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L668-L675>`_  
      `(Float)`          ``np_lognormal_impl`` `numba/cpython/randomimpl.py lines 668-675 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L668-L675>`_  
  `(Float, Float)`       ``np_lognormal_impl`` `numba/cpython/randomimpl.py lines 668-675 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L668-L675>`_  
  `(any, any, any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_    
=====================  ===========================================================================================================================================================================================

``'np.random.logseries'``
-------------------------

================  ==========================================================================================================================================================================================
   Signature                                                                                              Definition                                                                                        
================  ==========================================================================================================================================================================================
   `(Float)`        ``logseries_impl`` `numba/cpython/randomimpl.py lines 991-1019 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L991-L1019>`_  
  `(any, any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_   
================  ==========================================================================================================================================================================================

``'np.random.negative_binomial'``
---------------------------------

=====================  ====================================================================================================================================================================================================
      Signature                                                                                                     Definition                                                                                             
=====================  ====================================================================================================================================================================================================
  `(any, any, any)`            ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_        
  `(int64, Float)`       ``negative_binomial_impl`` `numba/cpython/randomimpl.py lines 1022-1036 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1022-L1036>`_  
=====================  ====================================================================================================================================================================================================

``'np.random.normal'``
----------------------

=====================  ========================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                       
=====================  ========================================================================================================================================================================================
        `()`             ``np_gauss_impl`` `numba/cpython/randomimpl.py lines 241-248 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L241-L248>`_   
      `(Float)`          ``np_gauss_impl`` `numba/cpython/randomimpl.py lines 241-248 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L241-L248>`_   
  `(Float, Float)`       ``np_gauss_impl`` `numba/cpython/randomimpl.py lines 241-248 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L241-L248>`_   
  `(any, any, any)`      ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
=====================  ========================================================================================================================================================================================

``'np.random.pareto'``
----------------------

================  ========================================================================================================================================================================================
   Signature                                                                                             Definition                                                                                       
================  ========================================================================================================================================================================================
   `(Float)`         ``pareto_impl`` `numba/cpython/randomimpl.py lines 707-717 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L707-L717>`_    
  `(any, any)`      ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
================  ========================================================================================================================================================================================

``'np.random.poisson'``
-----------------------

================  ==========================================================================================================================================================================================
   Signature                                                                                              Definition                                                                                        
================  ==========================================================================================================================================================================================
      `()`          ``poisson_impl`` `numba/cpython/randomimpl.py lines 1039-1098 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1039-L1098>`_  
   `(Float)`        ``poisson_impl`` `numba/cpython/randomimpl.py lines 1039-1098 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1039-L1098>`_  
  `(any, any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_   
================  ==========================================================================================================================================================================================

``'np.random.power'``
---------------------

================  ========================================================================================================================================================================================
   Signature                                                                                             Definition                                                                                       
================  ========================================================================================================================================================================================
   `(Float)`        ``power_impl`` `numba/cpython/randomimpl.py lines 1101-1111 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1101-L1111>`_  
  `(any, any)`      ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
================  ========================================================================================================================================================================================

``'np.random.randint'``
-----------------------

========================  ==========================================================================================================================================================================================
       Signature                                                                                                  Definition                                                                                        
========================  ==========================================================================================================================================================================================
      `(Integer)`            ``randint_impl_2`` `numba/cpython/randomimpl.py lines 416-422 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L416-L422>`_   
  `(Integer, Integer)`      ``randrange_impl_2`` `numba/cpython/randomimpl.py lines 424-429 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L424-L429>`_  
   `(any, any, any)`         ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_   
========================  ==========================================================================================================================================================================================

``'np.random.random'``
----------------------

=============  ========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                       
=============  ========================================================================================================================================================================================
    `()`          ``random_impl`` `numba/cpython/randomimpl.py lines 224-231 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L224-L231>`_    
   `(any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
=============  ========================================================================================================================================================================================

``'np.random.random_sample'``
-----------------------------

=============  ========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                       
=============  ========================================================================================================================================================================================
    `()`          ``random_impl`` `numba/cpython/randomimpl.py lines 224-231 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L224-L231>`_    
   `(any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
=============  ========================================================================================================================================================================================

``'np.random.ranf'``
--------------------

=============  ========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                       
=============  ========================================================================================================================================================================================
    `()`          ``random_impl`` `numba/cpython/randomimpl.py lines 224-231 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L224-L231>`_    
   `(any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
=============  ========================================================================================================================================================================================

``'np.random.rayleigh'``
------------------------

================  ===========================================================================================================================================================================================
   Signature                                                                                              Definition                                                                                         
================  ===========================================================================================================================================================================================
      `()`          ``rayleigh_impl`` `numba/cpython/randomimpl.py lines 1114-1126 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1114-L1126>`_  
   `(Float)`        ``rayleigh_impl`` `numba/cpython/randomimpl.py lines 1114-1126 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1114-L1126>`_  
  `(any, any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_    
================  ===========================================================================================================================================================================================

``'np.random.sample'``
----------------------

=============  ========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                       
=============  ========================================================================================================================================================================================
    `()`          ``random_impl`` `numba/cpython/randomimpl.py lines 224-231 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L224-L231>`_    
   `(any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
=============  ========================================================================================================================================================================================

``'np.random.seed'``
--------------------

==============  ===================================================================================================================================================================================
  Signature                                                                                         Definition                                                                                     
==============  ===================================================================================================================================================================================
  `(uint32)`      ``seed_impl`` `numba/cpython/randomimpl.py lines 205-209 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L205-L209>`_  
==============  ===================================================================================================================================================================================

``'np.random.standard_cauchy'``
-------------------------------

=============  =========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                        
=============  =========================================================================================================================================================================================
    `()`         ``cauchy_impl`` `numba/cpython/randomimpl.py lines 1129-1137 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1129-L1137>`_  
   `(any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_   
=============  =========================================================================================================================================================================================

``'np.random.standard_exponential'``
------------------------------------

=============  ==========================================================================================================================================================================================
  Signature                                                                                            Definition                                                                                        
=============  ==========================================================================================================================================================================================
    `()`         ``exponential_impl`` `numba/cpython/randomimpl.py lines 655-666 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L655-L666>`_  
   `(any)`        ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_   
=============  ==========================================================================================================================================================================================

``'np.random.standard_gamma'``
------------------------------

================  ===========================================================================================================================================================================================
   Signature                                                                                              Definition                                                                                         
================  ===========================================================================================================================================================================================
   `(Float)`        ``gammavariate_impl`` `numba/cpython/randomimpl.py lines 509-515 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L509-L515>`_  
  `(any, any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_    
================  ===========================================================================================================================================================================================

``'np.random.standard_normal'``
-------------------------------

=============  ========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                       
=============  ========================================================================================================================================================================================
    `()`         ``np_gauss_impl`` `numba/cpython/randomimpl.py lines 241-248 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L241-L248>`_   
   `(any)`       ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
=============  ========================================================================================================================================================================================

``'np.random.standard_t'``
--------------------------

================  =============================================================================================================================================================================================
   Signature                                                                                               Definition                                                                                          
================  =============================================================================================================================================================================================
   `(Float)`        ``standard_t_impl`` `numba/cpython/randomimpl.py lines 1140-1150 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1140-L1150>`_  
  `(any, any)`        ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_     
================  =============================================================================================================================================================================================

``'np.random.triangular'``
--------------------------

===========================  ===========================================================================================================================================================================================
         Signature                                                                                                   Definition                                                                                         
===========================  ===========================================================================================================================================================================================
  `(Float, Float, Float)`      ``triangular_impl_3`` `numba/cpython/randomimpl.py lines 475-480 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L475-L480>`_  
  `(any, any, any, any)`        ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_    
===========================  ===========================================================================================================================================================================================

``'np.random.uniform'``
-----------------------

=====================  ========================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                       
=====================  ========================================================================================================================================================================================
  `(Float, Float)`        ``uniform_impl`` `numba/cpython/randomimpl.py lines 436-439 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L436-L439>`_   
  `(any, any, any)`      ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
=====================  ========================================================================================================================================================================================

``'np.random.vonmises'``
------------------------

=====================  ==============================================================================================================================================================================================
      Signature                                                                                                  Definition                                                                                          
=====================  ==============================================================================================================================================================================================
  `(Float, Float)`       ``vonmisesvariate_impl`` `numba/cpython/randomimpl.py lines 754-758 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L754-L758>`_  
  `(any, any, any)`         ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_     
=====================  ==============================================================================================================================================================================================

``'np.random.wald'``
--------------------

=====================  ========================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                       
=====================  ========================================================================================================================================================================================
  `(Float, Float)`       ``wald_impl`` `numba/cpython/randomimpl.py lines 1153-1172 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1153-L1172>`_   
  `(any, any, any)`      ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
=====================  ========================================================================================================================================================================================

``'np.random.weibull'``
-----------------------

================  ========================================================================================================================================================================================
   Signature                                                                                             Definition                                                                                       
================  ========================================================================================================================================================================================
   `(Float)`         ``weibull_impl`` `numba/cpython/randomimpl.py lines 735-746 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L735-L746>`_   
  `(any, any)`      ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
================  ========================================================================================================================================================================================

``'np.random.zipf'``
--------------------

================  ========================================================================================================================================================================================
   Signature                                                                                             Definition                                                                                       
================  ========================================================================================================================================================================================
   `(Float)`        ``zipf_impl`` `numba/cpython/randomimpl.py lines 1175-1194 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1175-L1194>`_   
  `(any, any)`      ``random_arr`` `numba/cpython/randomimpl.py lines 1289-1308 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L1289-L1308>`_  
================  ========================================================================================================================================================================================

``'number.item'``
-----------------

===============  ========================================================================================================================================================================================
   Signature                                                                                            Definition                                                                                       
===============  ========================================================================================================================================================================================
  `(Boolean)`      ``number_item_impl`` `numba/cpython/numbers.py lines 1167-1173 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1167-L1173>`_  
  `(Number)`       ``number_item_impl`` `numba/cpython/numbers.py lines 1167-1173 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1167-L1173>`_  
===============  ========================================================================================================================================================================================

``'print_item'``
----------------

===============  ===================================================================================================================================================================================
   Signature                                                                                         Definition                                                                                     
===============  ===================================================================================================================================================================================
  `(Literal)`      ``print_item_impl`` `numba/cpython/printimpl.py lines 16-31 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/printimpl.py#L16-L31>`_  
    `(any)`        ``print_item_impl`` `numba/cpython/printimpl.py lines 34-62 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/printimpl.py#L34-L62>`_  
===============  ===================================================================================================================================================================================

``'random.betavariate'``
------------------------

====================  ==========================================================================================================================================================================================
     Signature                                                                                                Definition                                                                                        
====================  ==========================================================================================================================================================================================
  `(Float, Float)`      ``betavariate_impl`` `numba/cpython/randomimpl.py lines 592-597 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L592-L597>`_  
====================  ==========================================================================================================================================================================================

``'random.expovariate'``
------------------------

=============  ==========================================================================================================================================================================================
  Signature                                                                                            Definition                                                                                        
=============  ==========================================================================================================================================================================================
  `(Float)`      ``expovariate_impl`` `numba/cpython/randomimpl.py lines 623-641 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L623-L641>`_  
=============  ==========================================================================================================================================================================================

``'random.gammavariate'``
-------------------------

====================  ===========================================================================================================================================================================================
     Signature                                                                                                Definition                                                                                         
====================  ===========================================================================================================================================================================================
  `(Float, Float)`      ``gammavariate_impl`` `numba/cpython/randomimpl.py lines 503-507 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L503-L507>`_  
====================  ===========================================================================================================================================================================================

``'random.gauss'``
------------------

====================  ====================================================================================================================================================================================
     Signature                                                                                             Definition                                                                                     
====================  ====================================================================================================================================================================================
  `(Float, Float)`      ``gauss_impl`` `numba/cpython/randomimpl.py lines 234-238 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L234-L238>`_  
====================  ====================================================================================================================================================================================

``'random.getrandbits'``
------------------------

===============  ==========================================================================================================================================================================================
   Signature                                                                                             Definition                                                                                        
===============  ==========================================================================================================================================================================================
  `(Integer)`      ``getrandbits_impl`` `numba/cpython/randomimpl.py lines 304-314 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L304-L314>`_  
===============  ==========================================================================================================================================================================================

``'random.lognormvariate'``
---------------------------

====================  =============================================================================================================================================================================================
     Signature                                                                                                 Definition                                                                                          
====================  =============================================================================================================================================================================================
  `(Float, Float)`      ``lognormvariate_impl`` `numba/cpython/randomimpl.py lines 677-681 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L677-L681>`_  
====================  =============================================================================================================================================================================================

``'random.normalvariate'``
--------------------------

====================  ====================================================================================================================================================================================
     Signature                                                                                             Definition                                                                                     
====================  ====================================================================================================================================================================================
  `(Float, Float)`      ``gauss_impl`` `numba/cpython/randomimpl.py lines 234-238 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L234-L238>`_  
====================  ====================================================================================================================================================================================

``'random.paretovariate'``
--------------------------

=============  ============================================================================================================================================================================================
  Signature                                                                                             Definition                                                                                         
=============  ============================================================================================================================================================================================
  `(Float)`      ``paretovariate_impl`` `numba/cpython/randomimpl.py lines 693-705 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L693-L705>`_  
=============  ============================================================================================================================================================================================

``'random.randint'``
--------------------

========================  ========================================================================================================================================================================================
       Signature                                                                                                 Definition                                                                                       
========================  ========================================================================================================================================================================================
  `(Integer, Integer)`      ``randint_impl_1`` `numba/cpython/randomimpl.py lines 408-414 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L408-L414>`_  
========================  ========================================================================================================================================================================================

``'random.random'``
-------------------

=============  =====================================================================================================================================================================================
  Signature                                                                                         Definition                                                                                      
=============  =====================================================================================================================================================================================
    `()`         ``random_impl`` `numba/cpython/randomimpl.py lines 218-222 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L218-L222>`_  
=============  =====================================================================================================================================================================================

``'random.randrange'``
----------------------

=================================  ==========================================================================================================================================================================================
            Signature                                                                                                      Definition                                                                                        
=================================  ==========================================================================================================================================================================================
           `(Integer)`               ``randrange_impl_1`` `numba/cpython/randomimpl.py lines 386-392 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L386-L392>`_  
      `(Integer, Integer)`           ``randrange_impl_2`` `numba/cpython/randomimpl.py lines 394-399 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L394-L399>`_  
  `(Integer, Integer, Integer)`      ``randrange_impl_3`` `numba/cpython/randomimpl.py lines 401-406 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L401-L406>`_  
=================================  ==========================================================================================================================================================================================

``'random.seed'``
-----------------

==============  ===================================================================================================================================================================================
  Signature                                                                                         Definition                                                                                     
==============  ===================================================================================================================================================================================
  `(uint32)`      ``seed_impl`` `numba/cpython/randomimpl.py lines 199-203 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L199-L203>`_  
==============  ===================================================================================================================================================================================

``'random.triangular'``
-----------------------

===========================  ===========================================================================================================================================================================================
         Signature                                                                                                   Definition                                                                                         
===========================  ===========================================================================================================================================================================================
     `(Float, Float)`          ``triangular_impl_2`` `numba/cpython/randomimpl.py lines 448-466 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L448-L466>`_  
  `(Float, Float, Float)`      ``triangular_impl_3`` `numba/cpython/randomimpl.py lines 468-473 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L468-L473>`_  
===========================  ===========================================================================================================================================================================================

``'random.uniform'``
--------------------

====================  ======================================================================================================================================================================================
     Signature                                                                                              Definition                                                                                      
====================  ======================================================================================================================================================================================
  `(Float, Float)`      ``uniform_impl`` `numba/cpython/randomimpl.py lines 431-434 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L431-L434>`_  
====================  ======================================================================================================================================================================================

``'random.vonmisesvariate'``
----------------------------

====================  ==============================================================================================================================================================================================
     Signature                                                                                                  Definition                                                                                          
====================  ==============================================================================================================================================================================================
  `(Float, Float)`      ``vonmisesvariate_impl`` `numba/cpython/randomimpl.py lines 748-752 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L748-L752>`_  
====================  ==============================================================================================================================================================================================

``'random.weibullvariate'``
---------------------------

====================  =============================================================================================================================================================================================
     Signature                                                                                                 Definition                                                                                          
====================  =============================================================================================================================================================================================
  `(Float, Float)`      ``weibullvariate_impl`` `numba/cpython/randomimpl.py lines 719-733 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/randomimpl.py#L719-L733>`_  
====================  =============================================================================================================================================================================================

``'set.add'``
-------------

================  =============================================================================================================================================================================
   Signature                                                                                       Definition                                                                                  
================  =============================================================================================================================================================================
  `(Set, any)`      ``set_add`` `numba/cpython/setobj.py lines 1228-1234 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1228-L1234>`_  
================  =============================================================================================================================================================================

``'set.clear'``
---------------

=============  ===============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                   
=============  ===============================================================================================================================================================================
   `(Set)`       ``set_clear`` `numba/cpython/setobj.py lines 1268-1272 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1268-L1272>`_  
=============  ===============================================================================================================================================================================

``'set.copy'``
--------------

=============  ==============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                  
=============  ==============================================================================================================================================================================
   `(Set)`       ``set_copy`` `numba/cpython/setobj.py lines 1274-1278 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1274-L1278>`_  
=============  ==============================================================================================================================================================================

``'set.difference'``
--------------------

================  ====================================================================================================================================================================================
   Signature                                                                                           Definition                                                                                     
================  ====================================================================================================================================================================================
  `(Set, Set)`      ``set_difference`` `numba/cpython/setobj.py lines 1347-1355 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1347-L1355>`_  
================  ====================================================================================================================================================================================

``'set.difference_update'``
---------------------------

=========================  ===========================================================================================================================================================================================
        Signature                                                                                                  Definition                                                                                         
=========================  ===========================================================================================================================================================================================
  `(Set, IterableType)`      ``set_difference_update`` `numba/cpython/setobj.py lines 1280-1287 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1280-L1287>`_  
=========================  ===========================================================================================================================================================================================

``'set.discard'``
-----------------

================  =================================================================================================================================================================================
   Signature                                                                                         Definition                                                                                    
================  =================================================================================================================================================================================
  `(Set, any)`      ``set_discard`` `numba/cpython/setobj.py lines 1236-1242 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1236-L1242>`_  
================  =================================================================================================================================================================================

``'set.intersection'``
----------------------

================  ======================================================================================================================================================================================
   Signature                                                                                            Definition                                                                                      
================  ======================================================================================================================================================================================
  `(Set, Set)`      ``set_intersection`` `numba/cpython/setobj.py lines 1357-1370 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1357-L1370>`_  
================  ======================================================================================================================================================================================

``'set.intersection_update'``
-----------------------------

================  =============================================================================================================================================================================================
   Signature                                                                                               Definition                                                                                          
================  =============================================================================================================================================================================================
  `(Set, Set)`      ``set_intersection_update`` `numba/cpython/setobj.py lines 1289-1296 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1289-L1296>`_  
================  =============================================================================================================================================================================================

``'set.isdisjoint'``
--------------------

================  ====================================================================================================================================================================================
   Signature                                                                                           Definition                                                                                     
================  ====================================================================================================================================================================================
  `(Set, Set)`      ``set_isdisjoint`` `numba/cpython/setobj.py lines 1406-1411 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1406-L1411>`_  
================  ====================================================================================================================================================================================

``'set.issubset'``
------------------

================  ==================================================================================================================================================================================
   Signature                                                                                          Definition                                                                                    
================  ==================================================================================================================================================================================
  `(Set, Set)`      ``set_issubset`` `numba/cpython/setobj.py lines 1413-1419 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1413-L1419>`_  
================  ==================================================================================================================================================================================

``'set.issuperset'``
--------------------

================  ====================================================================================================================================================================================
   Signature                                                                                           Definition                                                                                     
================  ====================================================================================================================================================================================
  `(Set, Set)`      ``set_issuperset`` `numba/cpython/setobj.py lines 1421-1427 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1421-L1427>`_  
================  ====================================================================================================================================================================================

``'set.pop'``
-------------

=============  =============================================================================================================================================================================
  Signature                                                                                     Definition                                                                                  
=============  =============================================================================================================================================================================
   `(Set)`       ``set_pop`` `numba/cpython/setobj.py lines 1244-1252 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1244-L1252>`_  
=============  =============================================================================================================================================================================

``'set.remove'``
----------------

================  ================================================================================================================================================================================
   Signature                                                                                         Definition                                                                                   
================  ================================================================================================================================================================================
  `(Set, any)`      ``set_remove`` `numba/cpython/setobj.py lines 1254-1263 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1254-L1263>`_  
================  ================================================================================================================================================================================

``'set.symmetric_difference'``
------------------------------

================  ==============================================================================================================================================================================================
   Signature                                                                                                Definition                                                                                          
================  ==============================================================================================================================================================================================
  `(Set, Set)`      ``set_symmetric_difference`` `numba/cpython/setobj.py lines 1372-1386 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1372-L1386>`_  
================  ==============================================================================================================================================================================================

``'set.symmetric_difference_update'``
-------------------------------------

================  =====================================================================================================================================================================================================
   Signature                                                                                                   Definition                                                                                              
================  =====================================================================================================================================================================================================
  `(Set, Set)`      ``set_symmetric_difference_update`` `numba/cpython/setobj.py lines 1298-1305 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1298-L1305>`_  
================  =====================================================================================================================================================================================================

``'set.union'``
---------------

================  ===============================================================================================================================================================================
   Signature                                                                                        Definition                                                                                   
================  ===============================================================================================================================================================================
  `(Set, Set)`      ``set_union`` `numba/cpython/setobj.py lines 1388-1401 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1388-L1401>`_  
================  ===============================================================================================================================================================================

``'set.update'``
----------------

=========================  ================================================================================================================================================================================
        Signature                                                                                             Definition                                                                                   
=========================  ================================================================================================================================================================================
  `(Set, IterableType)`      ``set_update`` `numba/cpython/setobj.py lines 1307-1330 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1307-L1330>`_  
=========================  ================================================================================================================================================================================

``'slice.indices'``
-------------------

==========================  =================================================================================================================================================================================
        Signature                                                                                              Definition                                                                                    
==========================  =================================================================================================================================================================================
  `(SliceType, Integer)`      ``slice_indices`` `numba/cpython/slicing.py lines 213-235 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/slicing.py#L213-L235>`_  
==========================  =================================================================================================================================================================================

``'static_getitem'``
--------------------

========================================  ==========================================================================================================================================================================================
               Signature                                                                                                          Definition                                                                                        
========================================  ==========================================================================================================================================================================================
        `(Array, StringLiteral)`               ``array_record_getitem`` `numba/np/arrayobj.py lines 2349-2355 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L2349-L2355>`_     
     `(BaseTuple, IntegerLiteral)`          ``static_getitem_tuple`` `numba/cpython/tupleobj.py lines 348-373 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L348-L373>`_  
      `(BaseTuple, SliceLiteral)`           ``static_getitem_tuple`` `numba/cpython/tupleobj.py lines 348-373 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L348-L373>`_  
      `(EnumClass, StringLiteral)`             ``enum_class_getitem`` `numba/cpython/enumimpl.py lines 72-80 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/enumimpl.py#L72-L80>`_     
    `(LiteralList, IntegerLiteral)`         ``static_getitem_tuple`` `numba/cpython/tupleobj.py lines 348-373 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L348-L373>`_  
     `(LiteralList, SliceLiteral)`          ``static_getitem_tuple`` `numba/cpython/tupleobj.py lines 348-373 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L348-L373>`_  
  `(LiteralStrKeyDict, StringLiteral)`      ``static_getitem_tuple`` `numba/cpython/tupleobj.py lines 348-373 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L348-L373>`_  
       `(Record, StringLiteral)`                  ``record_getitem`` `numba/np/arrayobj.py lines 2419-2425 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L2419-L2425>`_        
========================================  ==========================================================================================================================================================================================

``'static_setitem'``
--------------------

==================================  ==============================================================================================================================================================================
            Signature                                                                                                 Definition                                                                                  
==================================  ==============================================================================================================================================================================
  `(Record, StringLiteral, any)`      ``record_setitem`` `numba/np/arrayobj.py lines 2428-2438 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L2428-L2438>`_  
==================================  ==============================================================================================================================================================================

``'typed_getitem'``
-------------------

======================  ===================================================================================================================================================================================
      Signature                                                                                             Definition                                                                                     
======================  ===================================================================================================================================================================================
  `(BaseTuple, any)`      ``getitem_typed`` `numba/cpython/tupleobj.py lines 208-290 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L208-L290>`_  
======================  ===================================================================================================================================================================================

``<ufunc 'absolute'>``
----------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'add'>``
-----------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'arccos'>``
--------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'arccosh'>``
---------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'arcsin'>``
--------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'arcsinh'>``
---------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'arctan'>``
--------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'arctan2'>``
---------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'arctanh'>``
---------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'bitwise_and'>``
-------------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'bitwise_or'>``
------------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'bitwise_xor'>``
-------------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'ceil'>``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'conjugate'>``
-----------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'copysign'>``
----------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'cos'>``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'cosh'>``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'deg2rad'>``
---------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'degrees'>``
---------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'divmod'>``
--------------------

==============================  =================================================================================================================================================================================================
          Signature                                                                                                        Definition                                                                                            
==============================  =================================================================================================================================================================================================
         `(any, any)`             ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
     `(any, any, Array)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==============================  =================================================================================================================================================================================================

``<ufunc 'equal'>``
-------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'exp'>``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'exp2'>``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'expm1'>``
-------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'fabs'>``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'floor'>``
-------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'floor_divide'>``
--------------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'fmax'>``
------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'fmin'>``
------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'fmod'>``
------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'gcd'>``
-----------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'greater'>``
---------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'greater_equal'>``
---------------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'hypot'>``
-------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'invert'>``
--------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'isfinite'>``
----------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'isinf'>``
-------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'isnan'>``
-------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'isnat'>``
-------------------

===================  =================================================================================================================================================================================================
     Signature                                                                                                  Definition                                                                                            
===================  =================================================================================================================================================================================================
  `(NPDatetime)`                ``_np_isnat_impl`` `numba/np/npdatetime.py lines 811-814 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L811-L814>`_            
  `(NPTimedelta)`               ``_np_isnat_impl`` `numba/np/npdatetime.py lines 811-814 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L811-L814>`_            
      `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`       ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
===================  =================================================================================================================================================================================================

``<ufunc 'lcm'>``
-----------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'ldexp'>``
-------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'left_shift'>``
------------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'less'>``
------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'less_equal'>``
------------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'log'>``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'log10'>``
-------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'log1p'>``
-------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'log2'>``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'logaddexp'>``
-----------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'logaddexp2'>``
------------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'logical_and'>``
-------------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'logical_not'>``
-------------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'logical_or'>``
------------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'logical_xor'>``
-------------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'maximum'>``
---------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'minimum'>``
---------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'multiply'>``
----------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'negative'>``
----------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'nextafter'>``
-----------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'not_equal'>``
-----------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'positive'>``
----------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'power'>``
-------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'rad2deg'>``
---------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'radians'>``
---------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'reciprocal'>``
------------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'remainder'>``
-----------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'right_shift'>``
-------------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'rint'>``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'sign'>``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'signbit'>``
---------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'sin'>``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'sinh'>``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'spacing'>``
---------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'sqrt'>``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'square'>``
--------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'subtract'>``
----------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'tan'>``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'tanh'>``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``<ufunc 'true_divide'>``
-------------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
=======================  =================================================================================================================================================================================================

``<ufunc 'trunc'>``
-------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 478-479 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L478-L479>`_  
==================  =================================================================================================================================================================================================

``_operator.add``
-----------------

================================  ========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                       
================================  ========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
    `(BaseTuple, BaseTuple)`                              ``tuple_add`` `numba/cpython/tupleobj.py lines 31-36 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L31-L36>`_                         
      `(Complex, Complex)`                          ``complex_add_impl`` `numba/cpython/numbers.py lines 1004-1017 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1004-L1017>`_                  
        `(Float, Float)`                               ``real_add_impl`` `numba/cpython/numbers.py lines 583-585 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L583-L585>`_                      
      `(Integer, Integer)`                                ``int_add_impl`` `numba/cpython/numbers.py lines 36-42 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L36-L42>`_                        
         `(List, List)`                                   ``list_add`` `numba/cpython/listobj.py lines 684-704 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L684-L704>`_                        
  `(NPDatetime, NPTimedelta)`                       ``datetime_plus_timedelta`` `numba/np/npdatetime.py lines 603-612 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L603-L612>`_                   
  `(NPTimedelta, NPDatetime)`                       ``timedelta_plus_datetime`` `numba/np/npdatetime.py lines 615-624 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L615-L624>`_                   
  `(NPTimedelta, NPTimedelta)`                         ``timedelta_add_impl`` `numba/np/npdatetime.py lines 180-191 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L180-L191>`_                     
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
================================  ========================================================================================================================================================================================================================

``_operator.and_``
------------------

========================  ========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                       
========================  ========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
  `(Boolean, Boolean)`                          ``int_and_impl`` `numba/cpython/numbers.py lines 400-406 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L400-L406>`_                      
  `(Integer, Integer)`                          ``int_and_impl`` `numba/cpython/numbers.py lines 400-406 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L400-L406>`_                      
      `(Set, Set)`                           ``set_intersection`` `numba/cpython/setobj.py lines 1357-1370 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1357-L1370>`_                   
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
========================  ========================================================================================================================================================================================================================

``_operator.contains``
----------------------

=====================  ============================================================================================================================================================================
      Signature                                                                                         Definition                                                                                 
=====================  ============================================================================================================================================================================
  `(Sequence, any)`       ``in_seq`` `numba/cpython/listobj.py lines 658-666 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L658-L666>`_   
    `(Set, any)`         ``in_set`` `numba/cpython/setobj.py lines 1206-1209 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1206-L1209>`_  
=====================  ============================================================================================================================================================================

``_operator.delitem``
---------------------

=======================  ======================================================================================================================================================================================
       Signature                                                                                               Definition                                                                                      
=======================  ======================================================================================================================================================================================
   `(List, Integer)`       ``delitem_list_index`` `numba/cpython/listobj.py lines 614-620 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L614-L620>`_  
  `(List, SliceType)`         ``delitem_list`` `numba/cpython/listobj.py lines 623-653 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L623-L653>`_     
=======================  ======================================================================================================================================================================================

``_operator.eq``
----------------

============================================  ========================================================================================================================================================================================================================
                 Signature                                                                                                                           Definition                                                                                                       
============================================  ========================================================================================================================================================================================================================
              `(Array, Array)`                  ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
               `(Array, any)`                   ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
          `(BaseTuple, BaseTuple)`                                     ``tuple_eq`` `numba/cpython/tupleobj.py lines 60-73 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L60-L73>`_                         
            `(Complex, Complex)`                                ``complex_eq_impl`` `numba/cpython/numbers.py lines 1110-1119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1110-L1119>`_                   
         `(EnumMember, EnumMember)`                                    ``enum_eq`` `numba/cpython/enumimpl.py lines 12-18 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/enumimpl.py#L12-L18>`_                          
              `(Float, Float)`                                      ``real_eq_impl`` `numba/cpython/numbers.py lines 831-833 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L831-L833>`_                      
            `(Integer, Integer)`                                    ``int_eq_impl`` `numba/cpython/numbers.py lines 355-357 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L355-L357>`_                       
     `(IntegerLiteral, IntegerLiteral)`                            ``const_eq_impl`` `numba/cpython/builtins.py lines 95-103 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L95-L103>`_                      
               `(List, List)`                                         ``list_eq`` `numba/cpython/listobj.py lines 765-787 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L765-L787>`_                         
            `(Literal, Literal)`                                   ``const_eq_impl`` `numba/cpython/builtins.py lines 95-103 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L95-L103>`_                      
  `(LiteralStrKeyDict, LiteralStrKeyDict)`              ``literalstrkeydict_impl_equals`` `numba/typed/dictobject.py lines 1169-1175 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/typed/dictobject.py#L1169-L1175>`_           
         `(NPDatetime, NPDatetime)`                  ``_create_datetime_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 663-689 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L663-L689>`_       
        `(NPTimedelta, NPTimedelta)`                ``_create_timedelta_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 374-400 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L374-L400>`_       
                `(Set, Set)`                                      ``set_isdisjoint`` `numba/cpython/setobj.py lines 1429-1434 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1429-L1434>`_                    
               `(any, Array)`                   ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
               `(bool, bool)`                                       ``int_eq_impl`` `numba/cpython/numbers.py lines 355-357 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L355-L357>`_                       
============================================  ========================================================================================================================================================================================================================

``_operator.floordiv``
----------------------

================================  ========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                       
================================  ========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
        `(Float, Float)`                             ``real_floordiv_impl`` `numba/cpython/numbers.py lines 780-796 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L780-L796>`_                   
      `(Integer, Integer)`                           ``int_floordiv_impl`` `numba/cpython/numbers.py lines 169-174 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L169-L174>`_                    
     `(NPTimedelta, Float)`                          ``timedelta_over_number`` `numba/np/npdatetime.py lines 247-275 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L247-L275>`_                    
    `(NPTimedelta, Integer)`                         ``timedelta_over_number`` `numba/np/npdatetime.py lines 247-275 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L247-L275>`_                    
  `(NPTimedelta, NPTimedelta)`                   ``timedelta_floor_div_timedelta`` `numba/np/npdatetime.py lines 301-334 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L301-L334>`_                
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
================================  ========================================================================================================================================================================================================================

``_operator.ge``
----------------

======================================  ========================================================================================================================================================================================================================
              Signature                                                                                                                        Definition                                                                                                       
======================================  ========================================================================================================================================================================================================================
           `(Array, Array)`               ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
            `(Array, any)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
       `(BaseTuple, BaseTuple)`                                  ``tuple_ge`` `numba/cpython/tupleobj.py lines 95-98 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L95-L98>`_                         
           `(Float, Float)`                                   ``real_ge_impl`` `numba/cpython/numbers.py lines 826-828 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L826-L828>`_                      
  `(IntegerLiteral, IntegerLiteral)`                          ``int_slt_impl`` `numba/cpython/numbers.py lines 315-317 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L315-L317>`_                      
            `(List, List)`                                      ``list_ge`` `numba/cpython/listobj.py lines 827-833 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L827-L833>`_                         
      `(NPDatetime, NPDatetime)`               ``_create_datetime_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 663-689 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L663-L689>`_       
     `(NPTimedelta, NPTimedelta)`              ``_create_timedelta_ordering_impl.<locals>.impl`` `numba/np/npdatetime.py lines 406-425 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L406-L425>`_        
             `(Set, Set)`                                   ``set_issuperset`` `numba/cpython/setobj.py lines 1421-1427 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1421-L1427>`_                    
            `(any, Array)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
            `(bool, bool)`                                    ``int_uge_impl`` `numba/cpython/numbers.py lines 350-352 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L350-L352>`_                      
           `(int16, int16)`                                   ``int_sge_impl`` `numba/cpython/numbers.py lines 330-332 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L330-L332>`_                      
           `(int32, int32)`                                   ``int_sge_impl`` `numba/cpython/numbers.py lines 330-332 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L330-L332>`_                      
           `(int64, int64)`                                   ``int_sge_impl`` `numba/cpython/numbers.py lines 330-332 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L330-L332>`_                      
            `(int8, int8)`                                    ``int_sge_impl`` `numba/cpython/numbers.py lines 330-332 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L330-L332>`_                      
          `(uint16, uint16)`                                  ``int_uge_impl`` `numba/cpython/numbers.py lines 350-352 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L350-L352>`_                      
          `(uint32, uint32)`                                  ``int_uge_impl`` `numba/cpython/numbers.py lines 350-352 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L350-L352>`_                      
          `(uint64, uint64)`                                  ``int_uge_impl`` `numba/cpython/numbers.py lines 350-352 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L350-L352>`_                      
           `(uint8, uint8)`                                   ``int_uge_impl`` `numba/cpython/numbers.py lines 350-352 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L350-L352>`_                      
======================================  ========================================================================================================================================================================================================================

``_operator.getitem``
---------------------

==============================  ======================================================================================================================================================================================
          Signature                                                                                                   Definition                                                                                      
==============================  ======================================================================================================================================================================================
      `(Buffer, Array)`            ``fancy_getitem_array`` `numba/np/arrayobj.py lines 1064-1081 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L1064-L1081>`_    
    `(Buffer, BaseTuple)`            ``getitem_array_tuple`` `numba/np/arrayobj.py lines 444-466 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L444-L466>`_      
     `(Buffer, Integer)`             ``getitem_arraynd_intp`` `numba/np/arrayobj.py lines 427-441 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L427-L441>`_     
    `(Buffer, SliceType)`            ``getitem_arraynd_intp`` `numba/np/arrayobj.py lines 427-441 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L427-L441>`_     
    `(CPointer, Integer)`         ``getitem_cpointer`` `numba/cpython/builtins.py lines 166-171 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L166-L171>`_  
      `(List, Integer)`              ``getitem_list`` `numba/cpython/listobj.py lines 507-516 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L507-L516>`_     
     `(List, SliceType)`            ``getslice_list`` `numba/cpython/listobj.py lines 530-551 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L530-L551>`_     
   `(NamedUniTuple, int64)`       ``getitem_unituple`` `numba/cpython/tupleobj.py lines 293-345 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L293-L345>`_  
  `(NamedUniTuple, uint64)`       ``getitem_unituple`` `numba/cpython/tupleobj.py lines 293-345 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L293-L345>`_  
  `(NumpyFlatType, Integer)`      ``iternext_numpy_getitem`` `numba/np/arrayobj.py lines 3187-3200 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3187-L3200>`_  
     `(UniTuple, int64)`          ``getitem_unituple`` `numba/cpython/tupleobj.py lines 293-345 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L293-L345>`_  
     `(UniTuple, uint64)`         ``getitem_unituple`` `numba/cpython/tupleobj.py lines 293-345 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L293-L345>`_  
==============================  ======================================================================================================================================================================================

``_operator.gt``
----------------

======================================  ========================================================================================================================================================================================================================
              Signature                                                                                                                        Definition                                                                                                       
======================================  ========================================================================================================================================================================================================================
           `(Array, Array)`               ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
            `(Array, any)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
       `(BaseTuple, BaseTuple)`                                  ``tuple_gt`` `numba/cpython/tupleobj.py lines 90-93 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L90-L93>`_                         
           `(Float, Float)`                                   ``real_gt_impl`` `numba/cpython/numbers.py lines 821-823 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L821-L823>`_                      
  `(IntegerLiteral, IntegerLiteral)`                          ``int_slt_impl`` `numba/cpython/numbers.py lines 315-317 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L315-L317>`_                      
            `(List, List)`                                      ``list_gt`` `numba/cpython/listobj.py lines 835-841 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L835-L841>`_                         
      `(NPDatetime, NPDatetime)`               ``_create_datetime_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 663-689 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L663-L689>`_       
     `(NPTimedelta, NPTimedelta)`              ``_create_timedelta_ordering_impl.<locals>.impl`` `numba/np/npdatetime.py lines 406-425 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L406-L425>`_        
             `(Set, Set)`                                       ``set_gt`` `numba/cpython/setobj.py lines 1450-1455 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1450-L1455>`_                        
            `(any, Array)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
            `(bool, bool)`                                    ``int_ugt_impl`` `numba/cpython/numbers.py lines 345-347 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L345-L347>`_                      
           `(int16, int16)`                                   ``int_sgt_impl`` `numba/cpython/numbers.py lines 325-327 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L325-L327>`_                      
           `(int32, int32)`                                   ``int_sgt_impl`` `numba/cpython/numbers.py lines 325-327 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L325-L327>`_                      
           `(int64, int64)`                                   ``int_sgt_impl`` `numba/cpython/numbers.py lines 325-327 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L325-L327>`_                      
            `(int8, int8)`                                    ``int_sgt_impl`` `numba/cpython/numbers.py lines 325-327 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L325-L327>`_                      
          `(uint16, uint16)`                                  ``int_ugt_impl`` `numba/cpython/numbers.py lines 345-347 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L345-L347>`_                      
          `(uint32, uint32)`                                  ``int_ugt_impl`` `numba/cpython/numbers.py lines 345-347 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L345-L347>`_                      
          `(uint64, uint64)`                                  ``int_ugt_impl`` `numba/cpython/numbers.py lines 345-347 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L345-L347>`_                      
           `(uint8, uint8)`                                   ``int_ugt_impl`` `numba/cpython/numbers.py lines 345-347 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L345-L347>`_                      
======================================  ========================================================================================================================================================================================================================

``_operator.iadd``
------------------

================================  =========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                        
================================  =========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
      `(Complex, Complex)`                          ``complex_add_impl`` `numba/cpython/numbers.py lines 1004-1017 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1004-L1017>`_                   
        `(Float, Float)`                                ``real_add_impl`` `numba/cpython/numbers.py lines 583-585 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L583-L585>`_                      
      `(Integer, Integer)`                                ``int_add_impl`` `numba/cpython/numbers.py lines 36-42 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L36-L42>`_                         
         `(List, List)`                               ``list_add_inplace`` `numba/cpython/listobj.py lines 706-711 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L706-L711>`_                     
  `(NPDatetime, NPTimedelta)`                        ``datetime_plus_timedelta`` `numba/np/npdatetime.py lines 603-612 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L603-L612>`_                   
  `(NPTimedelta, NPDatetime)`                        ``timedelta_plus_datetime`` `numba/np/npdatetime.py lines 615-624 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L615-L624>`_                   
  `(NPTimedelta, NPTimedelta)`                         ``timedelta_add_impl`` `numba/np/npdatetime.py lines 180-191 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L180-L191>`_                      
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
================================  =========================================================================================================================================================================================================================

``_operator.iand``
------------------

========================  =========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                        
========================  =========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
  `(Boolean, Boolean)`                          ``int_and_impl`` `numba/cpython/numbers.py lines 400-406 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L400-L406>`_                       
  `(Integer, Integer)`                          ``int_and_impl`` `numba/cpython/numbers.py lines 400-406 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L400-L406>`_                       
      `(Set, Set)`                              ``set_inplace`` `numba/cpython/setobj.py lines 1338-1342 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1338-L1342>`_                      
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
========================  =========================================================================================================================================================================================================================

``_operator.ifloordiv``
-----------------------

============================  =========================================================================================================================================================================================================================
         Signature                                                                                                                   Definition                                                                                                        
============================  =========================================================================================================================================================================================================================
      `(Array, Array)`          ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
       `(Array, any)`           ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
      `(Float, Float)`                           ``real_floordiv_impl`` `numba/cpython/numbers.py lines 780-796 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L780-L796>`_                    
    `(Integer, Integer)`                          ``int_floordiv_impl`` `numba/cpython/numbers.py lines 169-174 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L169-L174>`_                    
   `(NPTimedelta, Float)`                         ``timedelta_over_number`` `numba/np/npdatetime.py lines 247-275 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L247-L275>`_                    
  `(NPTimedelta, Integer)`                        ``timedelta_over_number`` `numba/np/npdatetime.py lines 247-275 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L247-L275>`_                    
       `(any, Array)`           ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
============================  =========================================================================================================================================================================================================================

``_operator.ilshift``
---------------------

========================  =========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                        
========================  =========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
  `(Integer, Integer)`                          ``int_shl_impl`` `numba/cpython/numbers.py lines 379-385 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L379-L385>`_                       
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
========================  =========================================================================================================================================================================================================================

``_operator.imod``
------------------

========================  =========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                        
========================  =========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
    `(Float, Float)`                            ``real_mod_impl`` `numba/cpython/numbers.py lines 761-777 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L761-L777>`_                      
  `(Integer, Integer)`                          ``int_rem_impl`` `numba/cpython/numbers.py lines 190-195 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L190-L195>`_                       
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
========================  =========================================================================================================================================================================================================================

``_operator.imul``
------------------

============================  =========================================================================================================================================================================================================================
         Signature                                                                                                                   Definition                                                                                                        
============================  =========================================================================================================================================================================================================================
      `(Array, Array)`          ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
       `(Array, any)`           ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
    `(Complex, Complex)`                        ``complex_mul_impl`` `numba/cpython/numbers.py lines 1036-1056 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1036-L1056>`_                   
      `(Float, Float)`                              ``real_mul_impl`` `numba/cpython/numbers.py lines 593-595 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L593-L595>`_                      
   `(Float, NPTimedelta)`                        ``number_times_timedelta`` `numba/np/npdatetime.py lines 236-244 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L236-L244>`_                    
    `(Integer, Integer)`                              ``int_mul_impl`` `numba/cpython/numbers.py lines 54-60 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L54-L60>`_                         
  `(Integer, NPTimedelta)`                       ``number_times_timedelta`` `numba/np/npdatetime.py lines 236-244 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L236-L244>`_                    
     `(List, Integer)`                            ``list_mul_inplace`` `numba/cpython/listobj.py lines 734-751 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L734-L751>`_                     
   `(NPTimedelta, Float)`                        ``timedelta_times_number`` `numba/np/npdatetime.py lines 225-233 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L225-L233>`_                    
  `(NPTimedelta, Integer)`                       ``timedelta_times_number`` `numba/np/npdatetime.py lines 225-233 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L225-L233>`_                    
       `(any, Array)`           ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
============================  =========================================================================================================================================================================================================================

``_operator.invert``
--------------------

===============  ======================================================================================================================================================================================================================
   Signature                                                                                                           Definition                                                                                                      
===============  ======================================================================================================================================================================================================================
   `(Array)`       ``register_unary_operator_kernel.<locals>.lower_unary_operator`` `numba/np/npyimpl.py lines 494-495 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L494-L495>`_  
  `(Boolean)`                       ``int_invert_impl`` `numba/cpython/numbers.py lines 443-449 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L443-L449>`_                    
  `(Integer)`                       ``int_invert_impl`` `numba/cpython/numbers.py lines 443-449 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L443-L449>`_                    
===============  ======================================================================================================================================================================================================================

``_operator.ior``
-----------------

========================  =========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                        
========================  =========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
  `(Boolean, Boolean)`                           ``int_or_impl`` `numba/cpython/numbers.py lines 409-415 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L409-L415>`_                       
  `(Integer, Integer)`                           ``int_or_impl`` `numba/cpython/numbers.py lines 409-415 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L409-L415>`_                       
      `(Set, Set)`                              ``set_inplace`` `numba/cpython/setobj.py lines 1338-1342 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1338-L1342>`_                      
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
========================  =========================================================================================================================================================================================================================

``_operator.ipow``
------------------

===============================  =========================================================================================================================================================================================================================
           Signature                                                                                                                    Definition                                                                                                        
===============================  =========================================================================================================================================================================================================================
       `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
        `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
     `(Complex, Complex)`                          ``complex_power_impl`` `numba/cpython/numbers.py lines 960-1002 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L960-L1002>`_                   
       `(Float, Float)`                               ``real_power_impl`` `numba/cpython/numbers.py lines 799-808 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L799-L808>`_                     
   `(Float, IntegerLiteral)`                         ``static_power_impl`` `numba/cpython/numbers.py lines 250-312 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L250-L312>`_                    
       `(Float, int16)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                      
       `(Float, int32)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                      
       `(Float, int64)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                      
        `(Float, int8)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                      
       `(Float, uint16)`                              ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                      
       `(Float, uint32)`                              ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                      
       `(Float, uint64)`                              ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                      
       `(Float, uint8)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                      
     `(Integer, Integer)`                             ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                      
  `(Integer, IntegerLiteral)`                        ``static_power_impl`` `numba/cpython/numbers.py lines 250-312 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L250-L312>`_                    
        `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
===============================  =========================================================================================================================================================================================================================

``_operator.irshift``
---------------------

========================  =========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                        
========================  =========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
  `(Integer, Integer)`                          ``int_shr_impl`` `numba/cpython/numbers.py lines 388-397 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L388-L397>`_                       
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
========================  =========================================================================================================================================================================================================================

``_operator.is_``
-----------------

==============================  ===================================================================================================================================================================================
          Signature                                                                                                 Definition                                                                                     
==============================  ===================================================================================================================================================================================
       `(Array, Array)`                ``array_is`` `numba/np/arrayobj.py lines 2475-2486 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L2475-L2486>`_        
     `(Boolean, Boolean)`           ``bool_is_impl`` `numba/cpython/builtins.py lines 76-91 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L76-L91>`_     
  `(EnumMember, EnumMember)`           ``enum_is`` `numba/cpython/enumimpl.py lines 21-30 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/enumimpl.py#L21-L30>`_       
        `(List, List)`                ``list_is`` `numba/cpython/listobj.py lines 757-763 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L757-L763>`_      
    `(ListType, ListType)`           ``list_is`` `numba/typed/listobject.py lines 216-222 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/typed/listobject.py#L216-L222>`_     
      `(Opaque, Opaque)`              ``opaque_is`` `numba/cpython/builtins.py lines 60-73 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L60-L73>`_      
      `(Optional, none)`             ``optional_is_none`` `numba/core/optional.py lines 18-35 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/optional.py#L18-L35>`_      
         `(Set, Set)`                ``set_is`` `numba/cpython/setobj.py lines 1457-1463 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1457-L1463>`_      
         `(any, any)`                ``generic_is`` `numba/cpython/builtins.py lines 35-57 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L35-L57>`_      
      `(none, Optional)`             ``optional_is_none`` `numba/core/optional.py lines 18-35 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/optional.py#L18-L35>`_      
        `(none, none)`            ``always_return_true_impl`` `numba/core/optional.py lines 10-11 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/core/optional.py#L10-L11>`_  
==============================  ===================================================================================================================================================================================

``_operator.is_not``
--------------------

================  ================================================================================================================================================================================
   Signature                                                                                         Definition                                                                                   
================  ================================================================================================================================================================================
  `(any, any)`      ``generic_is_not`` `numba/cpython/builtins.py lines 26-32 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L26-L32>`_  
================  ================================================================================================================================================================================

``_operator.isub``
------------------

================================  =========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                        
================================  =========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
      `(Complex, Complex)`                          ``complex_sub_impl`` `numba/cpython/numbers.py lines 1020-1033 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1020-L1033>`_                   
        `(Float, Float)`                                ``real_sub_impl`` `numba/cpython/numbers.py lines 588-590 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L588-L590>`_                      
      `(Integer, Integer)`                                ``int_sub_impl`` `numba/cpython/numbers.py lines 45-51 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L45-L51>`_                         
  `(NPDatetime, NPTimedelta)`                       ``datetime_minus_timedelta`` `numba/np/npdatetime.py lines 629-638 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L629-L638>`_                   
  `(NPTimedelta, NPTimedelta)`                         ``timedelta_sub_impl`` `numba/np/npdatetime.py lines 194-205 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L194-L205>`_                      
          `(Set, Set)`                                  ``set_inplace`` `numba/cpython/setobj.py lines 1338-1342 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1338-L1342>`_                      
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
================================  =========================================================================================================================================================================================================================

``_operator.itruediv``
----------------------

================================  =========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                        
================================  =========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
      `(Complex, Complex)`                          ``complex_div_impl`` `numba/cpython/numbers.py lines 1061-1090 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1061-L1090>`_                   
        `(Float, Float)`                                ``real_div_impl`` `numba/cpython/numbers.py lines 598-602 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L598-L602>`_                      
      `(Integer, Integer)`                            ``int_truediv_impl`` `numba/cpython/numbers.py lines 177-187 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L177-L187>`_                     
     `(NPTimedelta, Float)`                           ``timedelta_over_number`` `numba/np/npdatetime.py lines 247-275 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L247-L275>`_                    
    `(NPTimedelta, Integer)`                          ``timedelta_over_number`` `numba/np/npdatetime.py lines 247-275 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L247-L275>`_                    
  `(NPTimedelta, NPTimedelta)`                      ``timedelta_over_timedelta`` `numba/np/npdatetime.py lines 278-293 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L278-L293>`_                   
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
================================  =========================================================================================================================================================================================================================

``_operator.ixor``
------------------

========================  =========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                        
========================  =========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
  `(Boolean, Boolean)`                          ``int_xor_impl`` `numba/cpython/numbers.py lines 418-424 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L418-L424>`_                       
  `(Integer, Integer)`                          ``int_xor_impl`` `numba/cpython/numbers.py lines 418-424 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L418-L424>`_                       
      `(Set, Set)`                              ``set_inplace`` `numba/cpython/setobj.py lines 1338-1342 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1338-L1342>`_                      
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 504-510 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L504-L510>`_  
========================  =========================================================================================================================================================================================================================

``_operator.le``
----------------

======================================  ========================================================================================================================================================================================================================
              Signature                                                                                                                        Definition                                                                                                       
======================================  ========================================================================================================================================================================================================================
           `(Array, Array)`               ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
            `(Array, any)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
       `(BaseTuple, BaseTuple)`                                  ``tuple_le`` `numba/cpython/tupleobj.py lines 85-88 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L85-L88>`_                         
           `(Float, Float)`                                   ``real_le_impl`` `numba/cpython/numbers.py lines 816-818 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L816-L818>`_                      
  `(IntegerLiteral, IntegerLiteral)`                          ``int_slt_impl`` `numba/cpython/numbers.py lines 315-317 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L315-L317>`_                      
            `(List, List)`                                      ``list_le`` `numba/cpython/listobj.py lines 797-810 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L797-L810>`_                         
      `(NPDatetime, NPDatetime)`               ``_create_datetime_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 663-689 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L663-L689>`_       
     `(NPTimedelta, NPTimedelta)`              ``_create_timedelta_ordering_impl.<locals>.impl`` `numba/np/npdatetime.py lines 406-425 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L406-L425>`_        
             `(Set, Set)`                                    ``set_issubset`` `numba/cpython/setobj.py lines 1413-1419 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1413-L1419>`_                     
            `(any, Array)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
            `(bool, bool)`                                    ``int_ule_impl`` `numba/cpython/numbers.py lines 340-342 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L340-L342>`_                      
           `(int16, int16)`                                   ``int_sle_impl`` `numba/cpython/numbers.py lines 320-322 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L320-L322>`_                      
           `(int32, int32)`                                   ``int_sle_impl`` `numba/cpython/numbers.py lines 320-322 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L320-L322>`_                      
           `(int64, int64)`                                   ``int_sle_impl`` `numba/cpython/numbers.py lines 320-322 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L320-L322>`_                      
            `(int8, int8)`                                    ``int_sle_impl`` `numba/cpython/numbers.py lines 320-322 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L320-L322>`_                      
          `(uint16, uint16)`                                  ``int_ule_impl`` `numba/cpython/numbers.py lines 340-342 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L340-L342>`_                      
          `(uint32, uint32)`                                  ``int_ule_impl`` `numba/cpython/numbers.py lines 340-342 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L340-L342>`_                      
          `(uint64, uint64)`                                  ``int_ule_impl`` `numba/cpython/numbers.py lines 340-342 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L340-L342>`_                      
           `(uint8, uint8)`                                   ``int_ule_impl`` `numba/cpython/numbers.py lines 340-342 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L340-L342>`_                      
======================================  ========================================================================================================================================================================================================================

``_operator.lshift``
--------------------

========================  ========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                       
========================  ========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
  `(Integer, Integer)`                          ``int_shl_impl`` `numba/cpython/numbers.py lines 379-385 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L379-L385>`_                      
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
========================  ========================================================================================================================================================================================================================

``_operator.lt``
----------------

======================================  ========================================================================================================================================================================================================================
              Signature                                                                                                                        Definition                                                                                                       
======================================  ========================================================================================================================================================================================================================
           `(Array, Array)`               ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
            `(Array, any)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
       `(BaseTuple, BaseTuple)`                                  ``tuple_lt`` `numba/cpython/tupleobj.py lines 80-83 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L80-L83>`_                         
           `(Float, Float)`                                   ``real_lt_impl`` `numba/cpython/numbers.py lines 811-813 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L811-L813>`_                      
  `(IntegerLiteral, IntegerLiteral)`                          ``int_slt_impl`` `numba/cpython/numbers.py lines 315-317 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L315-L317>`_                      
            `(List, List)`                                      ``list_lt`` `numba/cpython/listobj.py lines 812-825 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L812-L825>`_                         
      `(NPDatetime, NPDatetime)`               ``_create_datetime_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 663-689 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L663-L689>`_       
     `(NPTimedelta, NPTimedelta)`              ``_create_timedelta_ordering_impl.<locals>.impl`` `numba/np/npdatetime.py lines 406-425 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L406-L425>`_        
             `(Set, Set)`                                       ``set_lt`` `numba/cpython/setobj.py lines 1443-1448 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1443-L1448>`_                        
            `(any, Array)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
            `(bool, bool)`                                    ``int_ult_impl`` `numba/cpython/numbers.py lines 335-337 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L335-L337>`_                      
           `(int16, int16)`                                   ``int_slt_impl`` `numba/cpython/numbers.py lines 315-317 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L315-L317>`_                      
           `(int32, int32)`                                   ``int_slt_impl`` `numba/cpython/numbers.py lines 315-317 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L315-L317>`_                      
           `(int64, int64)`                                   ``int_slt_impl`` `numba/cpython/numbers.py lines 315-317 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L315-L317>`_                      
            `(int8, int8)`                                    ``int_slt_impl`` `numba/cpython/numbers.py lines 315-317 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L315-L317>`_                      
          `(uint16, uint16)`                                  ``int_ult_impl`` `numba/cpython/numbers.py lines 335-337 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L335-L337>`_                      
          `(uint32, uint32)`                                  ``int_ult_impl`` `numba/cpython/numbers.py lines 335-337 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L335-L337>`_                      
          `(uint64, uint64)`                                  ``int_ult_impl`` `numba/cpython/numbers.py lines 335-337 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L335-L337>`_                      
           `(uint8, uint8)`                                   ``int_ult_impl`` `numba/cpython/numbers.py lines 335-337 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L335-L337>`_                      
======================================  ========================================================================================================================================================================================================================

``_operator.matmul``
--------------------

====================  =============================================================================================================================================================
     Signature                                                                                 Definition                                                                          
====================  =============================================================================================================================================================
  `(Array, Array)`      ``dot_2`` `numba/np/linalg.py lines 523-542 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/linalg.py#L523-L542>`_  
====================  =============================================================================================================================================================

``_operator.mod``
-----------------

========================  ========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                       
========================  ========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
    `(Float, Float)`                           ``real_mod_impl`` `numba/cpython/numbers.py lines 761-777 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L761-L777>`_                      
  `(Integer, Integer)`                          ``int_rem_impl`` `numba/cpython/numbers.py lines 190-195 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L190-L195>`_                      
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
========================  ========================================================================================================================================================================================================================

``_operator.mul``
-----------------

============================  ========================================================================================================================================================================================================================
         Signature                                                                                                                   Definition                                                                                                       
============================  ========================================================================================================================================================================================================================
      `(Array, Array)`          ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
       `(Array, any)`           ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
    `(Complex, Complex)`                        ``complex_mul_impl`` `numba/cpython/numbers.py lines 1036-1056 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1036-L1056>`_                  
      `(Float, Float)`                             ``real_mul_impl`` `numba/cpython/numbers.py lines 593-595 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L593-L595>`_                      
   `(Float, NPTimedelta)`                        ``number_times_timedelta`` `numba/np/npdatetime.py lines 236-244 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L236-L244>`_                   
    `(Integer, Integer)`                              ``int_mul_impl`` `numba/cpython/numbers.py lines 54-60 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L54-L60>`_                        
  `(Integer, NPTimedelta)`                       ``number_times_timedelta`` `numba/np/npdatetime.py lines 236-244 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L236-L244>`_                   
     `(List, Integer)`                                ``list_mul`` `numba/cpython/listobj.py lines 714-732 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L714-L732>`_                        
   `(NPTimedelta, Float)`                        ``timedelta_times_number`` `numba/np/npdatetime.py lines 225-233 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L225-L233>`_                   
  `(NPTimedelta, Integer)`                       ``timedelta_times_number`` `numba/np/npdatetime.py lines 225-233 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L225-L233>`_                   
       `(any, Array)`           ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
============================  ========================================================================================================================================================================================================================

``_operator.ne``
----------------

======================================  ========================================================================================================================================================================================================================
              Signature                                                                                                                        Definition                                                                                                       
======================================  ========================================================================================================================================================================================================================
           `(Array, Array)`               ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
            `(Array, any)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
       `(BaseTuple, BaseTuple)`                                  ``tuple_ne`` `numba/cpython/tupleobj.py lines 75-78 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L75-L78>`_                         
         `(Complex, Complex)`                             ``complex_ne_impl`` `numba/cpython/numbers.py lines 1122-1131 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1122-L1131>`_                   
      `(EnumMember, EnumMember)`                                 ``enum_ne`` `numba/cpython/enumimpl.py lines 33-39 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/enumimpl.py#L33-L39>`_                          
           `(Float, Float)`                                   ``real_ne_impl`` `numba/cpython/numbers.py lines 836-838 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L836-L838>`_                      
         `(Integer, Integer)`                                 ``int_ne_impl`` `numba/cpython/numbers.py lines 360-362 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L360-L362>`_                       
  `(IntegerLiteral, IntegerLiteral)`                        ``const_ne_impl`` `numba/cpython/builtins.py lines 107-115 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L107-L115>`_                     
            `(List, List)`                                      ``list_ne`` `numba/cpython/listobj.py lines 789-795 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L789-L795>`_                         
         `(Literal, Literal)`                               ``const_ne_impl`` `numba/cpython/builtins.py lines 107-115 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L107-L115>`_                     
      `(NPDatetime, NPDatetime)`               ``_create_datetime_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 663-689 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L663-L689>`_       
     `(NPTimedelta, NPTimedelta)`             ``_create_timedelta_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 374-400 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L374-L400>`_       
             `(Set, Set)`                                       ``set_ne`` `numba/cpython/setobj.py lines 1436-1441 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1436-L1441>`_                        
            `(any, Array)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
            `(bool, bool)`                                    ``int_ne_impl`` `numba/cpython/numbers.py lines 360-362 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L360-L362>`_                       
======================================  ========================================================================================================================================================================================================================

``_operator.neg``
-----------------

===================  ======================================================================================================================================================================================================================
     Signature                                                                                                             Definition                                                                                                      
===================  ======================================================================================================================================================================================================================
     `(Array)`         ``register_unary_operator_kernel.<locals>.lower_unary_operator`` `numba/np/npyimpl.py lines 494-495 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L494-L495>`_  
    `(Complex)`                     ``complex_negate_impl`` `numba/cpython/numbers.py lines 1093-1102 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1093-L1102>`_                
     `(Float)`                          ``real_negate_impl`` `numba/cpython/numbers.py lines 848-851 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L848-L851>`_                   
    `(Integer)`                         ``int_negate_impl`` `numba/cpython/numbers.py lines 427-433 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L427-L433>`_                    
  `(NPTimedelta)`                        ``timedelta_neg_impl`` `numba/np/npdatetime.py lines 139-142 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L139-L142>`_                    
     `(bool)`                           ``bool_negate_impl`` `numba/cpython/numbers.py lines 494-499 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L494-L499>`_                   
===================  ======================================================================================================================================================================================================================

``_operator.not_``
------------------

===============  =======================================================================================================================================================================================
   Signature                                                                                           Definition                                                                                       
===============  =======================================================================================================================================================================================
  `(Complex)`      ``number_not_impl`` `numba/cpython/numbers.py lines 1179-1184 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1179-L1184>`_  
   `(Float)`       ``number_not_impl`` `numba/cpython/numbers.py lines 1179-1184 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1179-L1184>`_  
  `(Integer)`      ``number_not_impl`` `numba/cpython/numbers.py lines 1179-1184 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1179-L1184>`_  
   `(bool)`        ``number_not_impl`` `numba/cpython/numbers.py lines 1179-1184 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1179-L1184>`_  
===============  =======================================================================================================================================================================================

``_operator.or_``
-----------------

========================  ========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                       
========================  ========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
  `(Boolean, Boolean)`                          ``int_or_impl`` `numba/cpython/numbers.py lines 409-415 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L409-L415>`_                       
  `(Integer, Integer)`                          ``int_or_impl`` `numba/cpython/numbers.py lines 409-415 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L409-L415>`_                       
      `(Set, Set)`                              ``set_union`` `numba/cpython/setobj.py lines 1388-1401 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1388-L1401>`_                       
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
========================  ========================================================================================================================================================================================================================

``_operator.pos``
-----------------

===================  ======================================================================================================================================================================================================================
     Signature                                                                                                             Definition                                                                                                      
===================  ======================================================================================================================================================================================================================
     `(Array)`                             ``array_positive_impl`` `numba/np/npyimpl.py lines 525-537 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L525-L537>`_                       
     `(Array)`         ``register_unary_operator_kernel.<locals>.lower_unary_operator`` `numba/np/npyimpl.py lines 494-495 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L494-L495>`_  
    `(Complex)`                    ``complex_positive_impl`` `numba/cpython/numbers.py lines 1105-1107 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1105-L1107>`_               
     `(Float)`                         ``real_positive_impl`` `numba/cpython/numbers.py lines 854-858 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L854-L858>`_                  
    `(Integer)`                        ``int_positive_impl`` `numba/cpython/numbers.py lines 436-440 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L436-L440>`_                   
  `(NPTimedelta)`                        ``timedelta_pos_impl`` `numba/np/npdatetime.py lines 133-136 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L133-L136>`_                    
     `(bool)`                       ``bool_unary_positive_impl`` `numba/cpython/numbers.py lines 502-506 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L502-L506>`_               
===================  ======================================================================================================================================================================================================================

``_operator.pow``
-----------------

===============================  ========================================================================================================================================================================================================================
           Signature                                                                                                                    Definition                                                                                                       
===============================  ========================================================================================================================================================================================================================
       `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
        `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
     `(Complex, Complex)`                          ``complex_power_impl`` `numba/cpython/numbers.py lines 960-1002 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L960-L1002>`_                  
       `(Float, Float)`                              ``real_power_impl`` `numba/cpython/numbers.py lines 799-808 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L799-L808>`_                     
   `(Float, IntegerLiteral)`                        ``static_power_impl`` `numba/cpython/numbers.py lines 250-312 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L250-L312>`_                    
       `(Float, int16)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                     
       `(Float, int32)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                     
       `(Float, int64)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                     
        `(Float, int8)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                     
       `(Float, uint16)`                              ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                     
       `(Float, uint32)`                              ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                     
       `(Float, uint64)`                              ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                     
       `(Float, uint8)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                     
     `(Integer, Integer)`                             ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_                     
  `(Integer, IntegerLiteral)`                       ``static_power_impl`` `numba/cpython/numbers.py lines 250-312 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L250-L312>`_                    
        `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
===============================  ========================================================================================================================================================================================================================

``_operator.rshift``
--------------------

========================  ========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                       
========================  ========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
  `(Integer, Integer)`                          ``int_shr_impl`` `numba/cpython/numbers.py lines 388-397 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L388-L397>`_                      
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
========================  ========================================================================================================================================================================================================================

``_operator.setitem``
---------------------

===================================  ==========================================================================================================================================================================================
             Signature                                                                                                       Definition                                                                                        
===================================  ==========================================================================================================================================================================================
       `(Buffer, any, any)`                    ``setitem_array`` `numba/np/arrayobj.py lines 469-507 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L469-L507>`_           
    `(CPointer, Integer, any)`           ``setitem_cpointer`` `numba/cpython/builtins.py lines 174-178 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L174-L178>`_    
      `(List, Integer, any)`                ``setitem_list`` `numba/cpython/listobj.py lines 518-527 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L518-L527>`_       
     `(List, SliceType, any)`               ``setitem_list`` `numba/cpython/listobj.py lines 553-610 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L553-L610>`_       
  `(NumpyFlatType, Integer, any)`      ``iternext_numpy_getitem_any`` `numba/np/arrayobj.py lines 3203-3217 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3203-L3217>`_  
===================================  ==========================================================================================================================================================================================

``_operator.sub``
-----------------

================================  ========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                       
================================  ========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
      `(Complex, Complex)`                          ``complex_sub_impl`` `numba/cpython/numbers.py lines 1020-1033 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1020-L1033>`_                  
        `(Float, Float)`                               ``real_sub_impl`` `numba/cpython/numbers.py lines 588-590 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L588-L590>`_                      
      `(Integer, Integer)`                                ``int_sub_impl`` `numba/cpython/numbers.py lines 45-51 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L45-L51>`_                        
   `(NPDatetime, NPDatetime)`                       ``datetime_minus_datetime`` `numba/np/npdatetime.py lines 643-657 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L643-L657>`_                   
  `(NPDatetime, NPTimedelta)`                       ``datetime_minus_timedelta`` `numba/np/npdatetime.py lines 629-638 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L629-L638>`_                  
  `(NPTimedelta, NPTimedelta)`                         ``timedelta_sub_impl`` `numba/np/npdatetime.py lines 194-205 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L194-L205>`_                     
          `(Set, Set)`                                ``set_difference`` `numba/cpython/setobj.py lines 1347-1355 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1347-L1355>`_                    
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
================================  ========================================================================================================================================================================================================================

``_operator.truediv``
---------------------

================================  ========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                       
================================  ========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
      `(Complex, Complex)`                          ``complex_div_impl`` `numba/cpython/numbers.py lines 1061-1090 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1061-L1090>`_                  
        `(Float, Float)`                               ``real_div_impl`` `numba/cpython/numbers.py lines 598-602 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L598-L602>`_                      
      `(Integer, Integer)`                            ``int_truediv_impl`` `numba/cpython/numbers.py lines 177-187 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L177-L187>`_                    
     `(NPTimedelta, Float)`                          ``timedelta_over_number`` `numba/np/npdatetime.py lines 247-275 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L247-L275>`_                    
    `(NPTimedelta, Integer)`                         ``timedelta_over_number`` `numba/np/npdatetime.py lines 247-275 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L247-L275>`_                    
  `(NPTimedelta, NPTimedelta)`                      ``timedelta_over_timedelta`` `numba/np/npdatetime.py lines 278-293 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L278-L293>`_                  
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
================================  ========================================================================================================================================================================================================================

``_operator.xor``
-----------------

========================  ========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                       
========================  ========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
  `(Boolean, Boolean)`                          ``int_xor_impl`` `numba/cpython/numbers.py lines 418-424 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L418-L424>`_                      
  `(Integer, Integer)`                          ``int_xor_impl`` `numba/cpython/numbers.py lines 418-424 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L418-L424>`_                      
      `(Set, Set)`                       ``set_symmetric_difference`` `numba/cpython/setobj.py lines 1372-1386 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1372-L1386>`_               
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 501-502 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npyimpl.py#L501-L502>`_  
========================  ========================================================================================================================================================================================================================

``builtins.abs``
----------------

===================  ========================================================================================================================================================================================
     Signature                                                                                              Definition                                                                                       
===================  ========================================================================================================================================================================================
    `(Complex)`        ``complex_abs_impl`` `numba/cpython/numbers.py lines 1134-1142 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1134-L1142>`_  
     `(Float)`            ``real_abs_impl`` `numba/cpython/numbers.py lines 841-845 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L841-L845>`_      
  `(NPTimedelta)`         ``timedelta_abs_impl`` `numba/np/npdatetime.py lines 145-155 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/npdatetime.py#L145-L155>`_     
     `(int16)`             ``int_abs_impl`` `numba/cpython/numbers.py lines 365-371 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L365-L371>`_      
     `(int32)`             ``int_abs_impl`` `numba/cpython/numbers.py lines 365-371 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L365-L371>`_      
     `(int64)`             ``int_abs_impl`` `numba/cpython/numbers.py lines 365-371 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L365-L371>`_      
     `(int8)`              ``int_abs_impl`` `numba/cpython/numbers.py lines 365-371 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L365-L371>`_      
    `(uint16)`            ``uint_abs_impl`` `numba/cpython/numbers.py lines 374-376 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L374-L376>`_      
    `(uint32)`            ``uint_abs_impl`` `numba/cpython/numbers.py lines 374-376 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L374-L376>`_      
    `(uint64)`            ``uint_abs_impl`` `numba/cpython/numbers.py lines 374-376 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L374-L376>`_      
     `(uint8)`            ``uint_abs_impl`` `numba/cpython/numbers.py lines 374-376 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L374-L376>`_      
===================  ========================================================================================================================================================================================

``builtins.bool``
-----------------

================  =======================================================================================================================================================================================
   Signature                                                                                            Definition                                                                                       
================  =======================================================================================================================================================================================
  `(Boolean)`        ``bool_as_bool`` `numba/cpython/numbers.py lines 1186-1189 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1186-L1189>`_    
  `(Complex)`       ``complex_as_bool`` `numba/cpython/numbers.py lines 1201-1210 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1201-L1210>`_  
   `(Float)`         ``float_as_bool`` `numba/cpython/numbers.py lines 1196-1199 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1196-L1199>`_   
  `(Integer)`         ``int_as_bool`` `numba/cpython/numbers.py lines 1191-1194 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L1191-L1194>`_    
  `(Sequence)`         ``sequence_bool`` `numba/cpython/listobj.py lines 668-673 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L668-L673>`_     
   `(Sized)`           ``sized_bool`` `numba/cpython/builtins.py lines 411-417 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L411-L417>`_      
================  =======================================================================================================================================================================================

``builtins.complex``
--------------------

=============  ==================================================================================================================================================================================
  Signature                                                                                        Definition                                                                                    
=============  ==================================================================================================================================================================================
  `(*any)`       ``complex_impl`` `numba/cpython/builtins.py lines 291-316 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L291-L316>`_  
=============  ==================================================================================================================================================================================

``builtins.dict``
-----------------

=============  =====================================================================================================================================================================
  Signature                                                                                 Definition                                                                              
=============  =====================================================================================================================================================================
    `()`         ``impl_dict`` `numba/typed/dictimpl.py lines 7-20 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/typed/dictimpl.py#L7-L20>`_  
=============  =====================================================================================================================================================================

``builtins.divmod``
-------------------

========================  ====================================================================================================================================================================================
       Signature                                                                                               Definition                                                                                     
========================  ====================================================================================================================================================================================
    `(Float, Float)`        ``real_divmod_impl`` `numba/cpython/numbers.py lines 735-758 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L735-L758>`_  
  `(Integer, Integer)`      ``int_divmod_impl`` `numba/cpython/numbers.py lines 160-166 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L160-L166>`_   
========================  ====================================================================================================================================================================================

``builtins.enumerate``
----------------------

=============================  =========================================================================================================================================================================================
          Signature                                                                                                   Definition                                                                                        
=============================  =========================================================================================================================================================================================
      `(IterableType)`           ``make_enumerate_object`` `numba/cpython/iterators.py lines 20-44 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/iterators.py#L20-L44>`_  
  `(IterableType, Integer)`      ``make_enumerate_object`` `numba/cpython/iterators.py lines 20-44 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/iterators.py#L20-L44>`_  
=============================  =========================================================================================================================================================================================

``builtins.float``
------------------

=============  ==============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                  
=============  ==============================================================================================================================================================================
   `(any)`       ``int_impl`` `numba/cpython/builtins.py lines 282-288 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L282-L288>`_  
=============  ==============================================================================================================================================================================

``builtins.int``
----------------

=============  ==============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                  
=============  ==============================================================================================================================================================================
   `(any)`       ``int_impl`` `numba/cpython/builtins.py lines 282-288 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L282-L288>`_  
=============  ==============================================================================================================================================================================

``builtins.iter``
-----------------

====================  ===============================================================================================================================================================================
     Signature                                                                                          Definition                                                                                   
====================  ===============================================================================================================================================================================
  `(IterableType)`      ``iter_impl`` `numba/cpython/builtins.py lines 369-374 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L369-L374>`_  
====================  ===============================================================================================================================================================================

``builtins.len``
----------------

==========================  ====================================================================================================================================================================================================
        Signature                                                                                                        Definition                                                                                             
==========================  ====================================================================================================================================================================================================
        `(Buffer)`                           ``array_len`` `numba/np/arrayobj.py lines 510-518 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L510-L518>`_                  
      `(ConstSized)`                  ``constsized_len`` `numba/cpython/builtins.py lines 403-408 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L403-L408>`_          
         `(List)`                         ``list_len`` `numba/cpython/listobj.py lines 482-485 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L482-L485>`_              
    `(NumpyFlatType)`             ``iternext_numpy_getitem_flat`` `numba/np/arrayobj.py lines 3220-3228 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3220-L3228>`_       
         `(Set)`                         ``set_len`` `numba/cpython/setobj.py lines 1201-1204 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1201-L1204>`_              
  `(range_state_int32)`       ``make_range_impl.<locals>.range_len`` `numba/cpython/rangeobj.py lines 81-89 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L81-L89>`_  
  `(range_state_int64)`       ``make_range_impl.<locals>.range_len`` `numba/cpython/rangeobj.py lines 81-89 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L81-L89>`_  
  `(range_state_uint64)`      ``make_range_impl.<locals>.range_len`` `numba/cpython/rangeobj.py lines 81-89 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L81-L89>`_  
==========================  ====================================================================================================================================================================================================

``builtins.list``
-----------------

====================  ====================================================================================================================================================================================
     Signature                                                                                             Definition                                                                                     
====================  ====================================================================================================================================================================================
        `()`            ``list_constructor`` `numba/cpython/listobj.py lines 472-477 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L472-L477>`_  
  `(IterableType)`      ``list_constructor`` `numba/cpython/listobj.py lines 462-470 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/listobj.py#L462-L470>`_  
====================  ====================================================================================================================================================================================

``builtins.max``
----------------

=================  ==================================================================================================================================================================================
    Signature                                                                                          Definition                                                                                    
=================  ==================================================================================================================================================================================
    `(*any)`          ``max_vararg`` `numba/cpython/builtins.py lines 213-215 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L213-L215>`_   
  `(BaseTuple)`      ``max_iterable`` `numba/cpython/builtins.py lines 207-211 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L207-L211>`_  
=================  ==================================================================================================================================================================================

``builtins.min``
----------------

=================  ==================================================================================================================================================================================
    Signature                                                                                          Definition                                                                                    
=================  ==================================================================================================================================================================================
    `(*any)`          ``min_vararg`` `numba/cpython/builtins.py lines 223-225 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L223-L225>`_   
  `(BaseTuple)`      ``min_iterable`` `numba/cpython/builtins.py lines 217-221 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L217-L221>`_  
=================  ==================================================================================================================================================================================

``builtins.next``
-----------------

====================  ===============================================================================================================================================================================
     Signature                                                                                          Definition                                                                                   
====================  ===============================================================================================================================================================================
  `(IteratorType)`      ``next_impl`` `numba/cpython/builtins.py lines 377-387 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L377-L387>`_  
====================  ===============================================================================================================================================================================

``builtins.pow``
----------------

========================  ========================================================================================================================================================================================
       Signature                                                                                                 Definition                                                                                       
========================  ========================================================================================================================================================================================
  `(Complex, Complex)`      ``complex_power_impl`` `numba/cpython/numbers.py lines 960-1002 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L960-L1002>`_  
    `(Float, Float)`          ``real_power_impl`` `numba/cpython/numbers.py lines 799-808 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L799-L808>`_     
    `(Float, int16)`           ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_     
    `(Float, int32)`           ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_     
    `(Float, int64)`           ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_     
    `(Float, int8)`            ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_     
   `(Float, uint16)`           ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_     
   `(Float, uint32)`           ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_     
   `(Float, uint64)`           ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_     
    `(Float, uint8)`           ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_     
  `(Integer, Integer)`         ``int_power_impl`` `numba/cpython/numbers.py lines 207-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/numbers.py#L207-L247>`_     
========================  ========================================================================================================================================================================================

``builtins.print``
------------------

=============  ======================================================================================================================================================================================
  Signature                                                                                          Definition                                                                                      
=============  ======================================================================================================================================================================================
  `(*any)`       ``print_varargs_impl`` `numba/cpython/printimpl.py lines 65-83 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/printimpl.py#L65-L83>`_  
=============  ======================================================================================================================================================================================

``builtins.range``
------------------

==============================  ======================================================================================================================================================================================================
          Signature                                                                                                           Definition                                                                                              
==============================  ======================================================================================================================================================================================================
          `(int32)`               ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 30-45 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L30-L45>`_  
       `(int32, int32)`           ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 47-62 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L47-L62>`_  
   `(int32, int32, int32)`        ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 64-79 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L64-L79>`_  
          `(int64)`               ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 30-45 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L30-L45>`_  
       `(int64, int64)`           ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 47-62 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L47-L62>`_  
   `(int64, int64, int64)`        ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 64-79 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L64-L79>`_  
          `(uint64)`              ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 30-45 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L30-L45>`_  
      `(uint64, uint64)`          ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 47-62 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L47-L62>`_  
  `(uint64, uint64, uint64)`      ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 64-79 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L64-L79>`_  
==============================  ======================================================================================================================================================================================================

``builtins.round``
------------------

======================  =======================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                       
======================  =======================================================================================================================================================================================
      `(Float)`           ``round_impl_unary`` `numba/cpython/builtins.py lines 232-242 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L232-L242>`_   
  `(Float, Integer)`      ``round_impl_binary`` `numba/cpython/builtins.py lines 244-276 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L244-L276>`_  
======================  =======================================================================================================================================================================================

``builtins.set``
----------------

====================  ===========================================================================================================================================================================================
     Signature                                                                                                Definition                                                                                         
====================  ===========================================================================================================================================================================================
        `()`            ``set_empty_constructor`` `numba/cpython/setobj.py lines 1176-1180 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1176-L1180>`_  
  `(IterableType)`         ``set_constructor`` `numba/cpython/setobj.py lines 1182-1195 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/setobj.py#L1182-L1195>`_     
====================  ===========================================================================================================================================================================================

``builtins.slice``
------------------

=============  ==========================================================================================================================================================================================
  Signature                                                                                            Definition                                                                                        
=============  ==========================================================================================================================================================================================
  `(*any)`       ``slice_constructor_impl`` `numba/cpython/slicing.py lines 151-191 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/slicing.py#L151-L191>`_  
=============  ==========================================================================================================================================================================================

``builtins.tuple``
------------------

=================  =======================================================================================================================================================================================
    Signature                                                                                            Definition                                                                                       
=================  =======================================================================================================================================================================================
      `()`           ``lower_empty_tuple`` `numba/cpython/builtins.py lines 419-423 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L419-L423>`_  
  `(BaseTuple)`         ``lower_tuple`` `numba/cpython/builtins.py lines 425-428 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L425-L428>`_     
=================  =======================================================================================================================================================================================

``builtins.type``
-----------------

=============  ===============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                   
=============  ===============================================================================================================================================================================
   `(any)`       ``type_impl`` `numba/cpython/builtins.py lines 361-366 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L361-L366>`_  
=============  ===============================================================================================================================================================================

``builtins.zip``
----------------

=============  ===================================================================================================================================================================================
  Signature                                                                                        Definition                                                                                     
=============  ===================================================================================================================================================================================
  `(*any)`       ``make_zip_object`` `numba/cpython/iterators.py lines 71-83 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/iterators.py#L71-L83>`_  
=============  ===================================================================================================================================================================================

``cmath.acos``
--------------

===============  =================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                    
===============  =================================================================================================================================================================================
  `(Complex)`      ``acos_impl`` `numba/cpython/cmathimpl.py lines 379-403 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L379-L403>`_  
===============  =================================================================================================================================================================================

``cmath.acosh``
---------------

===============  ==================================================================================================================================================================================
   Signature                                                                                         Definition                                                                                    
===============  ==================================================================================================================================================================================
  `(Complex)`      ``acosh_impl`` `numba/cpython/cmathimpl.py lines 405-429 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L405-L429>`_  
===============  ==================================================================================================================================================================================

``cmath.asin``
--------------

===============  =================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                    
===============  =================================================================================================================================================================================
  `(Complex)`      ``asin_impl`` `numba/cpython/cmathimpl.py lines 455-463 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L455-L463>`_  
===============  =================================================================================================================================================================================

``cmath.asinh``
---------------

===============  ==================================================================================================================================================================================
   Signature                                                                                         Definition                                                                                    
===============  ==================================================================================================================================================================================
  `(Complex)`      ``asinh_impl`` `numba/cpython/cmathimpl.py lines 431-453 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L431-L453>`_  
===============  ==================================================================================================================================================================================

``cmath.atan``
--------------

===============  =================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                    
===============  =================================================================================================================================================================================
  `(Complex)`      ``atan_impl`` `numba/cpython/cmathimpl.py lines 465-477 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L465-L477>`_  
===============  =================================================================================================================================================================================

``cmath.atanh``
---------------

===============  ==================================================================================================================================================================================
   Signature                                                                                         Definition                                                                                    
===============  ==================================================================================================================================================================================
  `(Complex)`      ``atanh_impl`` `numba/cpython/cmathimpl.py lines 479-531 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L479-L531>`_  
===============  ==================================================================================================================================================================================

``cmath.cos``
-------------

===============  ================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                   
===============  ================================================================================================================================================================================
  `(Complex)`      ``cos_impl`` `numba/cpython/cmathimpl.py lines 267-274 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L267-L274>`_  
===============  ================================================================================================================================================================================

``cmath.cosh``
--------------

===============  =================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                    
===============  =================================================================================================================================================================================
  `(Complex)`      ``cosh_impl`` `numba/cpython/cmathimpl.py lines 276-302 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L276-L302>`_  
===============  =================================================================================================================================================================================

``cmath.exp``
-------------

===============  ==============================================================================================================================================================================================================
   Signature                                                                                                       Definition                                                                                                  
===============  ==============================================================================================================================================================================================================
  `(Complex)`      ``intrinsic_complex_unary.<locals>.wrapper`` `numba/cpython/cmathimpl.py lines 94-108 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L94-L108>`_  
===============  ==============================================================================================================================================================================================================

``cmath.isfinite``
------------------

===============  =======================================================================================================================================================================================
   Signature                                                                                           Definition                                                                                       
===============  =======================================================================================================================================================================================
  `(Complex)`      ``isfinite_float_impl`` `numba/cpython/cmathimpl.py lines 50-56 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L50-L56>`_  
===============  =======================================================================================================================================================================================

``cmath.isinf``
---------------

===============  ====================================================================================================================================================================================
   Signature                                                                                          Definition                                                                                     
===============  ====================================================================================================================================================================================
  `(Complex)`      ``isinf_float_impl`` `numba/cpython/cmathimpl.py lines 41-47 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L41-L47>`_  
===============  ====================================================================================================================================================================================

``cmath.isnan``
---------------

===============  ====================================================================================================================================================================================
   Signature                                                                                          Definition                                                                                     
===============  ====================================================================================================================================================================================
  `(Complex)`      ``isnan_float_impl`` `numba/cpython/cmathimpl.py lines 33-39 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L33-L39>`_  
===============  ====================================================================================================================================================================================

``cmath.log``
-------------

========================  ==============================================================================================================================================================================================================
       Signature                                                                                                            Definition                                                                                                  
========================  ==============================================================================================================================================================================================================
      `(Complex)`           ``intrinsic_complex_unary.<locals>.wrapper`` `numba/cpython/cmathimpl.py lines 94-108 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L94-L108>`_  
  `(Complex, Complex)`                  ``log_base_impl`` `numba/cpython/cmathimpl.py lines 166-175 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L166-L175>`_               
========================  ==============================================================================================================================================================================================================

``cmath.log10``
---------------

===============  ==================================================================================================================================================================================
   Signature                                                                                         Definition                                                                                    
===============  ==================================================================================================================================================================================
  `(Complex)`      ``log10_impl`` `numba/cpython/cmathimpl.py lines 178-190 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L178-L190>`_  
===============  ==================================================================================================================================================================================

``cmath.phase``
---------------

===============  ==============================================================================================================================================================================================================
   Signature                                                                                                       Definition                                                                                                  
===============  ==============================================================================================================================================================================================================
  `(Complex)`      ``intrinsic_complex_unary.<locals>.wrapper`` `numba/cpython/cmathimpl.py lines 94-108 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L94-L108>`_  
===============  ==============================================================================================================================================================================================================

``cmath.polar``
---------------

===============  ==============================================================================================================================================================================================================
   Signature                                                                                                       Definition                                                                                                  
===============  ==============================================================================================================================================================================================================
  `(Complex)`      ``intrinsic_complex_unary.<locals>.wrapper`` `numba/cpython/cmathimpl.py lines 94-108 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L94-L108>`_  
===============  ==============================================================================================================================================================================================================

``cmath.rect``
--------------

====================  =============================================================================================================================================================================
     Signature                                                                                         Definition                                                                                  
====================  =============================================================================================================================================================================
  `(Float, Float)`      ``rect_impl`` `numba/cpython/cmathimpl.py lines 59-91 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L59-L91>`_  
====================  =============================================================================================================================================================================

``cmath.sin``
-------------

===============  ================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                   
===============  ================================================================================================================================================================================
  `(Complex)`      ``sin_impl`` `numba/cpython/cmathimpl.py lines 305-313 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L305-L313>`_  
===============  ================================================================================================================================================================================

``cmath.sinh``
--------------

===============  =================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                    
===============  =================================================================================================================================================================================
  `(Complex)`      ``sinh_impl`` `numba/cpython/cmathimpl.py lines 315-338 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L315-L338>`_  
===============  =================================================================================================================================================================================

``cmath.sqrt``
--------------

===============  =================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                    
===============  =================================================================================================================================================================================
  `(Complex)`      ``sqrt_impl`` `numba/cpython/cmathimpl.py lines 206-264 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L206-L264>`_  
===============  =================================================================================================================================================================================

``cmath.tan``
-------------

===============  ================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                   
===============  ================================================================================================================================================================================
  `(Complex)`      ``tan_impl`` `numba/cpython/cmathimpl.py lines 341-349 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L341-L349>`_  
===============  ================================================================================================================================================================================

``cmath.tanh``
--------------

===============  =================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                    
===============  =================================================================================================================================================================================
  `(Complex)`      ``tanh_impl`` `numba/cpython/cmathimpl.py lines 351-376 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/cmathimpl.py#L351-L376>`_  
===============  =================================================================================================================================================================================

``math.acos``
-------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.acosh``
--------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.asin``
-------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.asinh``
--------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.atan``
-------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.atan2``
--------------

======================  ======================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                      
======================  ======================================================================================================================================================================================
   `(Float, Float)`       ``atan2_float_impl`` `numba/cpython/mathimpl.py lines 313-326 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L313-L326>`_  
   `(int64, int64)`        ``atan2_s64_impl`` `numba/cpython/mathimpl.py lines 297-303 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L297-L303>`_   
  `(uint64, uint64)`       ``atan2_u64_impl`` `numba/cpython/mathimpl.py lines 305-311 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L305-L311>`_   
======================  ======================================================================================================================================================================================

``math.atanh``
--------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.ceil``
-------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.copysign``
-----------------

====================  =========================================================================================================================================================================================
     Signature                                                                                               Definition                                                                                        
====================  =========================================================================================================================================================================================
  `(Float, Float)`      ``copysign_float_impl`` `numba/cpython/mathimpl.py lines 250-257 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L250-L257>`_  
====================  =========================================================================================================================================================================================

``math.cos``
------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`              ``unary_math_intr.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 131-134 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L131-L134>`_          
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.cosh``
-------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.degrees``
----------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`                       ``degrees_float_impl`` `numba/cpython/mathimpl.py lines 394-399 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L394-L399>`_                  
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.erf``
------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.erfc``
-------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.exp``
------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`              ``unary_math_intr.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 131-134 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L131-L134>`_          
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.expm1``
--------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.fabs``
-------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`              ``unary_math_intr.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 131-134 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L131-L134>`_          
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.floor``
--------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.frexp``
--------------

=============  ================================================================================================================================================================================
  Signature                                                                                       Definition                                                                                   
=============  ================================================================================================================================================================================
  `(Float)`      ``frexp_impl`` `numba/cpython/mathimpl.py lines 263-277 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L263-L277>`_  
=============  ================================================================================================================================================================================

``math.gamma``
--------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.gcd``
------------

========================  ==============================================================================================================================================================================
       Signature                                                                                            Definition                                                                                  
========================  ==============================================================================================================================================================================
  `(Integer, Integer)`      ``gcd_impl`` `numba/cpython/mathimpl.py lines 427-454 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L427-L454>`_  
========================  ==============================================================================================================================================================================

``math.hypot``
--------------

======================  ======================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                      
======================  ======================================================================================================================================================================================
   `(Float, Float)`       ``hypot_float_impl`` `numba/cpython/mathimpl.py lines 352-378 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L352-L378>`_  
   `(int64, int64)`        ``hypot_s64_impl`` `numba/cpython/mathimpl.py lines 332-339 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L332-L339>`_   
  `(uint64, uint64)`       ``hypot_u64_impl`` `numba/cpython/mathimpl.py lines 342-349 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L342-L349>`_   
======================  ======================================================================================================================================================================================

``math.isfinite``
-----------------

===============  =========================================================================================================================================================================================
   Signature                                                                                            Definition                                                                                        
===============  =========================================================================================================================================================================================
   `(Float)`       ``isfinite_float_impl`` `numba/cpython/mathimpl.py lines 237-241 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L237-L241>`_  
  `(Integer)`       ``isfinite_int_impl`` `numba/cpython/mathimpl.py lines 244-247 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L244-L247>`_   
===============  =========================================================================================================================================================================================

``math.isinf``
--------------

===============  ======================================================================================================================================================================================
   Signature                                                                                           Definition                                                                                      
===============  ======================================================================================================================================================================================
   `(Float)`       ``isinf_float_impl`` `numba/cpython/mathimpl.py lines 225-229 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L225-L229>`_  
  `(Integer)`       ``isinf_int_impl`` `numba/cpython/mathimpl.py lines 231-234 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L231-L234>`_   
===============  ======================================================================================================================================================================================

``math.isnan``
--------------

===============  ======================================================================================================================================================================================
   Signature                                                                                           Definition                                                                                      
===============  ======================================================================================================================================================================================
   `(Float)`       ``isnan_float_impl`` `numba/cpython/mathimpl.py lines 213-217 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L213-L217>`_  
  `(Integer)`       ``isnan_int_impl`` `numba/cpython/mathimpl.py lines 219-222 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L219-L222>`_   
===============  ======================================================================================================================================================================================

``math.ldexp``
--------------

====================  ================================================================================================================================================================================
     Signature                                                                                           Definition                                                                                   
====================  ================================================================================================================================================================================
  `(Float, int32)`      ``ldexp_impl`` `numba/cpython/mathimpl.py lines 280-291 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L280-L291>`_  
====================  ================================================================================================================================================================================

``math.lgamma``
---------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.log``
------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`              ``unary_math_intr.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 131-134 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L131-L134>`_          
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.log10``
--------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`              ``unary_math_intr.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 131-134 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L131-L134>`_          
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.log1p``
--------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.log2``
-------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.pow``
------------

======================  ==============================================================================================================================================================================
      Signature                                                                                           Definition                                                                                  
======================  ==============================================================================================================================================================================
   `(Float, Float)`       ``pow_impl`` `numba/cpython/mathimpl.py lines 405-409 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L405-L409>`_  
  `(Float, Integer)`      ``pow_impl`` `numba/cpython/mathimpl.py lines 405-409 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L405-L409>`_  
======================  ==============================================================================================================================================================================

``math.radians``
----------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`                       ``radians_float_impl`` `numba/cpython/mathimpl.py lines 383-388 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L383-L388>`_                  
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.sin``
------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`              ``unary_math_intr.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 131-134 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L131-L134>`_          
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.sinh``
-------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.sqrt``
-------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.tan``
------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.tanh``
-------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.trunc``
--------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L149-L165>`_         
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``numba.core.types.abstract.TypeRef``
-------------------------------------

=============  ========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                       
=============  ========================================================================================================================================================================================
  `(*any)`       ``redirect_type_ctor`` `numba/cpython/builtins.py lines 574-603 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L574-L603>`_  
=============  ========================================================================================================================================================================================

``numba.core.types.functions.NamedTupleClass``
----------------------------------------------

=============  ========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                       
=============  ========================================================================================================================================================================================
  `(*any)`       ``namedtuple_constructor`` `numba/cpython/tupleobj.py lines 17-29 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/tupleobj.py#L17-L29>`_  
=============  ========================================================================================================================================================================================

``numba.core.types.functions.NumberClass``
------------------------------------------

=============  ========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                       
=============  ========================================================================================================================================================================================
   `(any)`       ``number_constructor`` `numba/cpython/builtins.py lines 319-332 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L319-L332>`_  
=============  ========================================================================================================================================================================================

``numba.core.typing.builtins.IndexValue``
-----------------------------------------

====================  ======================================================================================================================================================================================
     Signature                                                                                              Definition                                                                                      
====================  ======================================================================================================================================================================================
  `(int64, Type)`       ``impl_index_value`` `numba/cpython/builtins.py lines 514-522 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L514-L522>`_  
  `(uint64, Type)`      ``impl_index_value`` `numba/cpython/builtins.py lines 514-522 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L514-L522>`_  
====================  ======================================================================================================================================================================================

``numba.cpython.builtins.get_type_max_value``
---------------------------------------------

===================  ==============================================================================================================================================================================================
     Signature                                                                                                 Definition                                                                                          
===================  ==============================================================================================================================================================================================
     `(DType)`         ``lower_get_type_max_value`` `numba/cpython/builtins.py lines 488-507 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L488-L507>`_  
  `(NumberClass)`      ``lower_get_type_max_value`` `numba/cpython/builtins.py lines 488-507 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L488-L507>`_  
===================  ==============================================================================================================================================================================================

``numba.cpython.builtins.get_type_min_value``
---------------------------------------------

===================  ==============================================================================================================================================================================================
     Signature                                                                                                 Definition                                                                                          
===================  ==============================================================================================================================================================================================
     `(DType)`         ``lower_get_type_min_value`` `numba/cpython/builtins.py lines 467-486 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L467-L486>`_  
  `(NumberClass)`      ``lower_get_type_min_value`` `numba/cpython/builtins.py lines 467-486 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/builtins.py#L467-L486>`_  
===================  ==============================================================================================================================================================================================

``numba.misc.special.pndindex``
-------------------------------

===================================================  ========================================================================================================================================================================================
                     Signature                                                                                                              Definition                                                                                       
===================================================  ========================================================================================================================================================================================
  `(*<class 'numba.core.types.scalars.Integer'>)`         ``make_array_ndindex`` `numba/np/arrayobj.py lines 3265-3277 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3265-L3277>`_     
                   `(BaseTuple)`                       ``make_array_ndindex_tuple`` `numba/np/arrayobj.py lines 3280-3300 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3280-L3300>`_  
===================================================  ========================================================================================================================================================================================

``numba.misc.special.prange``
-----------------------------

==============================  ======================================================================================================================================================================================================
          Signature                                                                                                           Definition                                                                                              
==============================  ======================================================================================================================================================================================================
          `(int32)`               ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 30-45 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L30-L45>`_  
       `(int32, int32)`           ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 47-62 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L47-L62>`_  
   `(int32, int32, int32)`        ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 64-79 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L64-L79>`_  
          `(int64)`               ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 30-45 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L30-L45>`_  
       `(int64, int64)`           ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 47-62 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L47-L62>`_  
   `(int64, int64, int64)`        ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 64-79 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L64-L79>`_  
          `(uint64)`              ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 30-45 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L30-L45>`_  
      `(uint64, uint64)`          ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 47-62 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L47-L62>`_  
  `(uint64, uint64, uint64)`      ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 64-79 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L64-L79>`_  
==============================  ======================================================================================================================================================================================================

``numba.np.arrayobj.reshape_unchecked``
---------------------------------------

===================================  ====================================================================================================================================================================================
             Signature                                                                                                    Definition                                                                                     
===================================  ====================================================================================================================================================================================
  `(Array, BaseTuple, BaseTuple)`      ``impl_shape_unchecked`` `numba/np/arrayobj.py lines 5175-5194 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L5175-L5194>`_  
===================================  ====================================================================================================================================================================================

``numba.np.numpy_support.carray``
---------------------------------

===========================  ==========================================================================================================================================================================
         Signature                                                                                           Definition                                                                                
===========================  ==========================================================================================================================================================================
       `(any, any)`            ``np_cfarray`` `numba/np/arrayobj.py lines 4141-4194 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4141-L4194>`_  
  `(any, any, DTypeSpec)`      ``np_cfarray`` `numba/np/arrayobj.py lines 4141-4194 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4141-L4194>`_  
===========================  ==========================================================================================================================================================================

``numba.np.numpy_support.farray``
---------------------------------

===========================  ==========================================================================================================================================================================
         Signature                                                                                           Definition                                                                                
===========================  ==========================================================================================================================================================================
       `(any, any)`            ``np_cfarray`` `numba/np/arrayobj.py lines 4141-4194 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4141-L4194>`_  
  `(any, any, DTypeSpec)`      ``np_cfarray`` `numba/np/arrayobj.py lines 4141-4194 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4141-L4194>`_  
===========================  ==========================================================================================================================================================================

``numba.parfors.parfor.internal_prange``
----------------------------------------

==============================  ======================================================================================================================================================================================================
          Signature                                                                                                           Definition                                                                                              
==============================  ======================================================================================================================================================================================================
          `(int32)`               ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 30-45 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L30-L45>`_  
       `(int32, int32)`           ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 47-62 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L47-L62>`_  
   `(int32, int32, int32)`        ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 64-79 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L64-L79>`_  
          `(int64)`               ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 30-45 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L30-L45>`_  
       `(int64, int64)`           ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 47-62 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L47-L62>`_  
   `(int64, int64, int64)`        ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 64-79 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L64-L79>`_  
          `(uint64)`              ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 30-45 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L30-L45>`_  
      `(uint64, uint64)`          ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 47-62 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L47-L62>`_  
  `(uint64, uint64, uint64)`      ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 64-79 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/cpython/rangeobj.py#L64-L79>`_  
==============================  ======================================================================================================================================================================================================

``numba.stencils.stencil.stencil``
----------------------------------

=============  =========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                        
=============  =========================================================================================================================================================================================
    `()`         ``stencil_dummy_lower`` `numba/stencils/stencil.py lines 800-803 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/stencils/stencil.py#L800-L803>`_  
=============  =========================================================================================================================================================================================

``numpy.amax``
--------------

=============  =======================================================================================================================================================================
  Signature                                                                                  Definition                                                                               
=============  =======================================================================================================================================================================
  `(Array)`      ``array_max`` `numba/np/arraymath.py lines 550-630 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L550-L630>`_  
=============  =======================================================================================================================================================================

``numpy.amin``
--------------

=============  =======================================================================================================================================================================
  Signature                                                                                  Definition                                                                               
=============  =======================================================================================================================================================================
  `(Array)`      ``array_min`` `numba/np/arraymath.py lines 467-547 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L467-L547>`_  
=============  =======================================================================================================================================================================

``numpy.angle``
---------------

=======================  ====================================================================================================================================================================================
       Signature                                                                                              Definition                                                                                     
=======================  ====================================================================================================================================================================================
       `(Array)`           ``array_angle_kwarg`` `numba/np/arraymath.py lines 3095-3111 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L3095-L3111>`_   
  `(Array, Boolean)`       ``array_angle_kwarg`` `numba/np/arraymath.py lines 3095-3111 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L3095-L3111>`_   
      `(Number)`           ``scalar_angle_kwarg`` `numba/np/arraymath.py lines 3076-3092 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L3076-L3092>`_  
  `(Number, Boolean)`      ``scalar_angle_kwarg`` `numba/np/arraymath.py lines 3076-3092 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L3076-L3092>`_  
=======================  ====================================================================================================================================================================================

``numpy.argmax``
----------------

=============  ==========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                
=============  ==========================================================================================================================================================================
  `(Array)`      ``array_argmax`` `numba/np/arraymath.py lines 706-774 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L706-L774>`_  
=============  ==========================================================================================================================================================================

``numpy.argmin``
----------------

=============  ==========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                
=============  ==========================================================================================================================================================================
  `(Array)`      ``array_argmin`` `numba/np/arraymath.py lines 633-703 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L633-L703>`_  
=============  ==========================================================================================================================================================================

``numpy.argsort``
-----------------

============================  =============================================================================================================================================================================
         Signature                                                                                             Definition                                                                                  
============================  =============================================================================================================================================================================
  `(Array, StringLiteral)`      ``array_argsort`` `numba/np/arrayobj.py lines 5120-5134 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L5120-L5134>`_  
============================  =============================================================================================================================================================================

``numpy.array``
---------------

==========================  ========================================================================================================================================================================
        Signature                                                                                          Definition                                                                               
==========================  ========================================================================================================================================================================
         `(any)`              ``np_array`` `numba/np/arrayobj.py lines 4336-4353 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4336-L4353>`_  
    `(any, DTypeSpec)`        ``np_array`` `numba/np/arrayobj.py lines 4336-4353 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4336-L4353>`_  
  `(any, StringLiteral)`      ``np_array`` `numba/np/arrayobj.py lines 4336-4353 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4336-L4353>`_  
==========================  ========================================================================================================================================================================

``numpy.ascontiguousarray``
---------------------------

=============  =======================================================================================================================================================================================
  Signature                                                                                          Definition                                                                                       
=============  =======================================================================================================================================================================================
  `(Array)`      ``array_ascontiguousarray`` `numba/np/arrayobj.py lines 4065-4067 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4065-L4067>`_  
=============  =======================================================================================================================================================================================

``numpy.asfortranarray``
------------------------

=============  ====================================================================================================================================================================================
  Signature                                                                                         Definition                                                                                     
=============  ====================================================================================================================================================================================
  `(Array)`      ``array_asfortranarray`` `numba/np/arrayobj.py lines 4060-4062 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4060-L4062>`_  
=============  ====================================================================================================================================================================================

``numpy.atleast_1d``
--------------------

==================================================  =============================================================================================================================================================================
                    Signature                                                                                                        Definition                                                                                  
==================================================  =============================================================================================================================================================================
  `(*<class 'numba.core.types.npytypes.Array'>)`      ``np_atleast_1d`` `numba/np/arrayobj.py lines 4514-4518 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4514-L4518>`_  
==================================================  =============================================================================================================================================================================

``numpy.atleast_2d``
--------------------

==================================================  =============================================================================================================================================================================
                    Signature                                                                                                        Definition                                                                                  
==================================================  =============================================================================================================================================================================
  `(*<class 'numba.core.types.npytypes.Array'>)`      ``np_atleast_2d`` `numba/np/arrayobj.py lines 4521-4525 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4521-L4525>`_  
==================================================  =============================================================================================================================================================================

``numpy.atleast_3d``
--------------------

==================================================  =============================================================================================================================================================================
                    Signature                                                                                                        Definition                                                                                  
==================================================  =============================================================================================================================================================================
  `(*<class 'numba.core.types.npytypes.Array'>)`      ``np_atleast_3d`` `numba/np/arrayobj.py lines 4528-4532 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4528-L4532>`_  
==================================================  =============================================================================================================================================================================

``numpy.column_stack``
----------------------

=================  ===============================================================================================================================================================================
    Signature                                                                                        Definition                                                                                   
=================  ===============================================================================================================================================================================
  `(BaseTuple)`      ``np_column_stack`` `numba/np/arrayobj.py lines 4755-4780 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4755-L4780>`_  
=================  ===============================================================================================================================================================================

``numpy.concatenate``
---------------------

==========================  ===================================================================================================================================================================================
        Signature                                                                                               Definition                                                                                     
==========================  ===================================================================================================================================================================================
      `(BaseTuple)`             ``np_concatenate`` `numba/np/arrayobj.py lines 4735-4742 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4735-L4742>`_     
  `(BaseTuple, Integer)`      ``np_concatenate_axis`` `numba/np/arrayobj.py lines 4745-4752 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4745-L4752>`_  
==========================  ===================================================================================================================================================================================

``numpy.copy``
--------------

=============  ==========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                
=============  ==========================================================================================================================================================================
  `(Array)`      ``numpy_copy`` `numba/np/arrayobj.py lines 3990-3992 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3990-L3992>`_  
=============  ==========================================================================================================================================================================

``numpy.cumprod``
-----------------

=============  ===========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                 
=============  ===========================================================================================================================================================================
  `(Array)`      ``array_cumprod`` `numba/np/arraymath.py lines 384-400 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L384-L400>`_  
=============  ===========================================================================================================================================================================

``numpy.cumsum``
----------------

=============  ==========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                
=============  ==========================================================================================================================================================================
  `(Array)`      ``array_cumsum`` `numba/np/arraymath.py lines 364-381 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L364-L381>`_  
=============  ==========================================================================================================================================================================

``numpy.diag``
--------------

======================  ================================================================================================================================================================================
      Signature                                                                                            Definition                                                                                   
======================  ================================================================================================================================================================================
      `(Array)`              ``numpy_diag`` `numba/np/arrayobj.py lines 3714-3718 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3714-L3718>`_     
  `(Array, Integer)`      ``numpy_diag_kwarg`` `numba/np/arrayobj.py lines 3721-3760 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3721-L3760>`_  
======================  ================================================================================================================================================================================

``numpy.dot``
-------------

===========================  =============================================================================================================================================================
         Signature                                                                                    Definition                                                                          
===========================  =============================================================================================================================================================
     `(Array, Array)`          ``dot_2`` `numba/np/linalg.py lines 523-542 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/linalg.py#L523-L542>`_  
  `(Array, Array, Array)`      ``dot_3`` `numba/np/linalg.py lines 727-742 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/linalg.py#L727-L742>`_  
===========================  =============================================================================================================================================================

``numpy.dstack``
----------------

=================  =========================================================================================================================================================================
    Signature                                                                                     Definition                                                                                
=================  =========================================================================================================================================================================
  `(BaseTuple)`      ``np_dstack`` `numba/np/arrayobj.py lines 4847-4879 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4847-L4879>`_  
=================  =========================================================================================================================================================================

``numpy.empty``
---------------

================  ==============================================================================================================================================================================
   Signature                                                                                        Definition                                                                                  
================  ==============================================================================================================================================================================
    `(any)`         ``numpy_empty_nd`` `numba/np/arrayobj.py lines 3500-3505 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3500-L3505>`_  
  `(any, any)`      ``numpy_empty_nd`` `numba/np/arrayobj.py lines 3500-3505 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3500-L3505>`_  
================  ==============================================================================================================================================================================

``numpy.empty_like``
--------------------

==========================  ===================================================================================================================================================================================
        Signature                                                                                               Definition                                                                                     
==========================  ===================================================================================================================================================================================
         `(any)`              ``numpy_empty_like_nd`` `numba/np/arrayobj.py lines 3508-3514 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3508-L3514>`_  
    `(any, DTypeSpec)`        ``numpy_empty_like_nd`` `numba/np/arrayobj.py lines 3508-3514 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3508-L3514>`_  
  `(any, StringLiteral)`      ``numpy_empty_like_nd`` `numba/np/arrayobj.py lines 3508-3514 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3508-L3514>`_  
==========================  ===================================================================================================================================================================================

``numpy.expand_dims``
---------------------

======================  ==============================================================================================================================================================================
      Signature                                                                                           Definition                                                                                  
======================  ==============================================================================================================================================================================
  `(Array, Integer)`      ``np_expand_dims`` `numba/np/arrayobj.py lines 4461-4468 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4461-L4468>`_  
======================  ==============================================================================================================================================================================

``numpy.frombuffer``
--------------------

=============================  =============================================================================================================================================================================
          Signature                                                                                             Definition                                                                                  
=============================  =============================================================================================================================================================================
         `(Buffer)`              ``np_frombuffer`` `numba/np/arrayobj.py lines 4100-4138 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4100-L4138>`_  
    `(Buffer, DTypeSpec)`        ``np_frombuffer`` `numba/np/arrayobj.py lines 4100-4138 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4100-L4138>`_  
  `(Buffer, StringLiteral)`      ``np_frombuffer`` `numba/np/arrayobj.py lines 4100-4138 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4100-L4138>`_  
=============================  =============================================================================================================================================================================

``numpy.full``
--------------

===============================  ===================================================================================================================================================================================
           Signature                                                                                                 Definition                                                                                     
===============================  ===================================================================================================================================================================================
         `(any, any)`                 ``numpy_full_nd`` `numba/np/arrayobj.py lines 3536-3546 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3536-L3546>`_     
    `(any, any, DTypeSpec)`        ``numpy_full_dtype_nd`` `numba/np/arrayobj.py lines 3549-3560 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3549-L3560>`_  
  `(any, any, StringLiteral)`      ``numpy_full_dtype_nd`` `numba/np/arrayobj.py lines 3549-3560 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3549-L3560>`_  
===============================  ===================================================================================================================================================================================

``numpy.full_like``
-------------------

===============================  ============================================================================================================================================================================================
           Signature                                                                                                      Definition                                                                                         
===============================  ============================================================================================================================================================================================
         `(any, any)`                   ``numpy_full_like_nd`` `numba/np/arrayobj.py lines 3563-3573 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3563-L3573>`_       
    `(any, any, DTypeSpec)`        ``numpy_full_like_nd_type_spec`` `numba/np/arrayobj.py lines 3576-3587 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3576-L3587>`_  
  `(any, any, StringLiteral)`      ``numpy_full_like_nd_type_spec`` `numba/np/arrayobj.py lines 3576-3587 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3576-L3587>`_  
===============================  ============================================================================================================================================================================================

``numpy.hstack``
----------------

=================  =========================================================================================================================================================================
    Signature                                                                                     Definition                                                                                
=================  =========================================================================================================================================================================
  `(BaseTuple)`      ``np_hstack`` `numba/np/arrayobj.py lines 4806-4823 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4806-L4823>`_  
=================  =========================================================================================================================================================================

``numpy.identity``
------------------

==============================  ========================================================================================================================================================================================
          Signature                                                                                                    Definition                                                                                       
==============================  ========================================================================================================================================================================================
         `(Integer)`                   ``numpy_identity`` `numba/np/arrayobj.py lines 3646-3656 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3646-L3656>`_       
    `(Integer, DTypeSpec)`        ``numpy_identity_type_spec`` `numba/np/arrayobj.py lines 3659-3670 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3659-L3670>`_  
  `(Integer, StringLiteral)`      ``numpy_identity_type_spec`` `numba/np/arrayobj.py lines 3659-3670 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3659-L3670>`_  
==============================  ========================================================================================================================================================================================

``numpy.linspace``
------------------

===============================  ================================================================================================================================================================================
           Signature                                                                                                Definition                                                                                   
===============================  ================================================================================================================================================================================
      `(Number, Number)`           ``numpy_linspace_2`` `numba/np/arrayobj.py lines 3918-3925 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3918-L3925>`_  
  `(Number, Number, Integer)`      ``numpy_linspace_3`` `numba/np/arrayobj.py lines 3928-3945 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3928-L3945>`_  
===============================  ================================================================================================================================================================================

``numpy.mean``
--------------

=============  ========================================================================================================================================================================
  Signature                                                                                   Definition                                                                               
=============  ========================================================================================================================================================================
  `(Array)`      ``array_mean`` `numba/np/arraymath.py lines 403-418 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L403-L418>`_  
=============  ========================================================================================================================================================================

``numpy.ndenumerate``
---------------------

=============  ======================================================================================================================================================================================
  Signature                                                                                          Definition                                                                                      
=============  ======================================================================================================================================================================================
  `(Array)`      ``make_array_ndenumerate`` `numba/np/arrayobj.py lines 3231-3246 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3231-L3246>`_  
=============  ======================================================================================================================================================================================

``numpy.ndindex``
-----------------

===================================================  ========================================================================================================================================================================================
                     Signature                                                                                                              Definition                                                                                       
===================================================  ========================================================================================================================================================================================
  `(*<class 'numba.core.types.scalars.Integer'>)`         ``make_array_ndindex`` `numba/np/arrayobj.py lines 3265-3277 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3265-L3277>`_     
                   `(BaseTuple)`                       ``make_array_ndindex_tuple`` `numba/np/arrayobj.py lines 3280-3300 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3280-L3300>`_  
===================================================  ========================================================================================================================================================================================

``numpy.nditer``
----------------

=============  =================================================================================================================================================================================
  Signature                                                                                       Definition                                                                                    
=============  =================================================================================================================================================================================
   `(any)`       ``make_array_nditer`` `numba/np/arrayobj.py lines 3315-3332 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3315-L3332>`_  
=============  =================================================================================================================================================================================

``numpy.nonzero``
-----------------

=============  ===============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                   
=============  ===============================================================================================================================================================================
  `(Array)`      ``array_nonzero`` `numba/np/arraymath.py lines 3114-3170 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L3114-L3170>`_  
=============  ===============================================================================================================================================================================

``numpy.ones``
--------------

==========================  ===================================================================================================================================================================================
        Signature                                                                                               Definition                                                                                     
==========================  ===================================================================================================================================================================================
         `(any)`                 ``numpy_ones_nd`` `numba/np/arrayobj.py lines 3590-3602 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3590-L3602>`_     
    `(any, DTypeSpec)`        ``numpy_ones_dtype_nd`` `numba/np/arrayobj.py lines 3605-3616 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3605-L3616>`_  
  `(any, StringLiteral)`      ``numpy_ones_dtype_nd`` `numba/np/arrayobj.py lines 3605-3616 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3605-L3616>`_  
==========================  ===================================================================================================================================================================================

``numpy.ones_like``
-------------------

==========================  ========================================================================================================================================================================================
        Signature                                                                                                  Definition                                                                                       
==========================  ========================================================================================================================================================================================
         `(any)`                 ``numpy_ones_like_nd`` `numba/np/arrayobj.py lines 3619-3629 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3619-L3629>`_     
    `(any, DTypeSpec)`        ``numpy_ones_like_dtype_nd`` `numba/np/arrayobj.py lines 3632-3643 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3632-L3643>`_  
  `(any, StringLiteral)`      ``numpy_ones_like_dtype_nd`` `numba/np/arrayobj.py lines 3632-3643 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3632-L3643>`_  
==========================  ========================================================================================================================================================================================

``numpy.prod``
--------------

=============  ========================================================================================================================================================================
  Signature                                                                                   Definition                                                                               
=============  ========================================================================================================================================================================
  `(Array)`      ``array_prod`` `numba/np/arraymath.py lines 349-361 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L349-L361>`_  
=============  ========================================================================================================================================================================

``numpy.ravel``
---------------

=============  ========================================================================================================================================================================
  Signature                                                                                   Definition                                                                               
=============  ========================================================================================================================================================================
  `(Array)`      ``np_ravel`` `numba/np/arrayobj.py lines 1758-1763 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L1758-L1763>`_  
=============  ========================================================================================================================================================================

``numpy.round_``
----------------

=============================  =============================================================================================================================================================================================
          Signature                                                                                                     Definition                                                                                          
=============================  =============================================================================================================================================================================================
  `(Array, Integer, Array)`              ``array_round`` `numba/np/arraymath.py lines 3038-3048 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L3038-L3048>`_          
         `(Complex)`             ``scalar_round_unary_complex`` `numba/np/arraymath.py lines 2986-2993 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L2986-L2993>`_   
    `(Complex, Integer)`         ``scalar_round_binary_complex`` `numba/np/arraymath.py lines 3028-3035 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L3028-L3035>`_  
          `(Float)`               ``scalar_round_unary_float`` `numba/np/arraymath.py lines 2974-2977 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L2974-L2977>`_    
     `(Float, Integer)`           ``scalar_round_binary_float`` `numba/np/arraymath.py lines 2996-3025 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L2996-L3025>`_   
         `(Integer)`             ``scalar_round_unary_integer`` `numba/np/arraymath.py lines 2980-2983 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L2980-L2983>`_   
    `(Integer, Integer)`          ``scalar_round_binary_float`` `numba/np/arraymath.py lines 2996-3025 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L2996-L3025>`_   
=============================  =============================================================================================================================================================================================

``numpy.sinc``
--------------

==============  =============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                  
==============  =============================================================================================================================================================================
  `(Array)`       ``array_sinc`` `numba/np/arraymath.py lines 3051-3059 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L3051-L3059>`_   
  `(Number)`      ``scalar_sinc`` `numba/np/arraymath.py lines 3062-3073 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L3062-L3073>`_  
==============  =============================================================================================================================================================================

``numpy.sort``
--------------

=============  =======================================================================================================================================================================
  Signature                                                                                  Definition                                                                               
=============  =======================================================================================================================================================================
  `(Array)`      ``np_sort`` `numba/np/arrayobj.py lines 5109-5117 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L5109-L5117>`_  
=============  =======================================================================================================================================================================

``numpy.stack``
---------------

==========================  =============================================================================================================================================================================
        Signature                                                                                            Definition                                                                                  
==========================  =============================================================================================================================================================================
      `(BaseTuple)`             ``np_stack`` `numba/np/arrayobj.py lines 4794-4797 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4794-L4797>`_     
  `(BaseTuple, Integer)`      ``np_stack_axis`` `numba/np/arrayobj.py lines 4800-4803 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4800-L4803>`_  
==========================  =============================================================================================================================================================================

``numpy.std``
-------------

=============  =======================================================================================================================================================================
  Signature                                                                                  Definition                                                                               
=============  =======================================================================================================================================================================
  `(Array)`      ``array_std`` `numba/np/arraymath.py lines 439-445 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L439-L445>`_  
=============  =======================================================================================================================================================================

``numpy.sum``
-------------

========================================  ==================================================================================================================================================================================
               Signature                                                                                                      Definition                                                                                    
========================================  ==================================================================================================================================================================================
               `(Array)`                         ``array_sum`` `numba/np/arraymath.py lines 161-174 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L161-L174>`_        
          `(Array, DTypeSpec)`                ``array_sum_dtype`` `numba/np/arraymath.py lines 290-303 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L290-L303>`_     
       `(Array, IntegerLiteral)`               ``array_sum_axis`` `numba/np/arraymath.py lines 306-346 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L306-L346>`_     
  `(Array, IntegerLiteral, DTypeSpec)`      ``array_sum_axis_dtype`` `numba/np/arraymath.py lines 247-287 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L247-L287>`_  
            `(Array, int64)`                   ``array_sum_axis`` `numba/np/arraymath.py lines 306-346 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L306-L346>`_     
      `(Array, int64, DTypeSpec)`           ``array_sum_axis_dtype`` `numba/np/arraymath.py lines 247-287 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L247-L287>`_  
========================================  ==================================================================================================================================================================================

``numpy.take``
--------------

========================  ============================================================================================================================================================================
       Signature                                                                                           Definition                                                                                 
========================  ============================================================================================================================================================================
    `(Array, Array)`        ``numpy_take_2`` `numba/np/arrayobj.py lines 3776-3799 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3776-L3799>`_  
  `(Array, BaseTuple)`      ``numpy_take_3`` `numba/np/arrayobj.py lines 3802-3822 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3802-L3822>`_  
   `(Array, Integer)`       ``numpy_take_1`` `numba/np/arrayobj.py lines 3763-3773 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3763-L3773>`_  
    `(Array, List)`         ``numpy_take_3`` `numba/np/arrayobj.py lines 3802-3822 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3802-L3822>`_  
========================  ============================================================================================================================================================================

``numpy.var``
-------------

=============  =======================================================================================================================================================================
  Signature                                                                                  Definition                                                                               
=============  =======================================================================================================================================================================
  `(Array)`      ``array_var`` `numba/np/arraymath.py lines 421-436 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L421-L436>`_  
=============  =======================================================================================================================================================================

``numpy.vdot``
--------------

====================  ============================================================================================================================================================
     Signature                                                                                 Definition                                                                         
====================  ============================================================================================================================================================
  `(Array, Array)`      ``vdot`` `numba/np/linalg.py lines 548-556 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/linalg.py#L548-L556>`_  
====================  ============================================================================================================================================================

``numpy.vstack``
----------------

=================  =========================================================================================================================================================================
    Signature                                                                                     Definition                                                                                
=================  =========================================================================================================================================================================
  `(BaseTuple)`      ``np_vstack`` `numba/np/arrayobj.py lines 4826-4844 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L4826-L4844>`_  
=================  =========================================================================================================================================================================

``numpy.where``
---------------

=====================  ===============================================================================================================================================================================
      Signature                                                                                          Definition                                                                                   
=====================  ===============================================================================================================================================================================
      `(Array)`          ``array_nonzero`` `numba/np/arraymath.py lines 3114-3170 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L3114-L3170>`_  
  `(any, any, any)`        ``any_where`` `numba/np/arraymath.py lines 3256-3286 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arraymath.py#L3256-L3286>`_    
=====================  ===============================================================================================================================================================================

``numpy.zeros``
---------------

================  ==============================================================================================================================================================================
   Signature                                                                                        Definition                                                                                  
================  ==============================================================================================================================================================================
    `(any)`         ``numpy_zeros_nd`` `numba/np/arrayobj.py lines 3517-3523 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3517-L3523>`_  
  `(any, any)`      ``numpy_zeros_nd`` `numba/np/arrayobj.py lines 3517-3523 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3517-L3523>`_  
================  ==============================================================================================================================================================================

``numpy.zeros_like``
--------------------

==========================  ===================================================================================================================================================================================
        Signature                                                                                               Definition                                                                                     
==========================  ===================================================================================================================================================================================
         `(any)`              ``numpy_zeros_like_nd`` `numba/np/arrayobj.py lines 3526-3533 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3526-L3533>`_  
    `(any, DTypeSpec)`        ``numpy_zeros_like_nd`` `numba/np/arrayobj.py lines 3526-3533 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3526-L3533>`_  
  `(any, StringLiteral)`      ``numpy_zeros_like_nd`` `numba/np/arrayobj.py lines 3526-3533 <https://github.com/numba/numba/blob/18825058a6e32bb92f3941f3c8d14a818f19279f/numba/np/arrayobj.py#L3526-L3533>`_  
==========================  ===================================================================================================================================================================================


