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.argsort'``
-------------------

============================  =============================================================================================================================================================================
         Signature                                                                                             Definition                                                                                  
============================  =============================================================================================================================================================================
  `(Array, StringLiteral)`      ``array_argsort`` `numba/np/arrayobj.py lines 6768-6783 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L6768-L6783>`_  
============================  =============================================================================================================================================================================

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

============================  ============================================================================================================================================================================
         Signature                                                                                             Definition                                                                                 
============================  ============================================================================================================================================================================
    `(Array, DTypeSpec)`        ``array_astype`` `numba/np/arrayobj.py lines 5268-5296 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L5268-L5296>`_  
  `(Array, StringLiteral)`      ``array_astype`` `numba/np/arrayobj.py lines 5268-5296 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L5268-L5296>`_  
============================  ============================================================================================================================================================================

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

=============  ==========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                
=============  ==========================================================================================================================================================================
  `(Array)`      ``array_copy`` `numba/np/arrayobj.py lines 5137-5139 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L5137-L5139>`_  
=============  ==========================================================================================================================================================================

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

=============  =============================================================================================================================================================================
  Signature                                                                                     Definition                                                                                  
=============  =============================================================================================================================================================================
  `(Array)`      ``array_flatten`` `numba/np/arrayobj.py lines 2384-2392 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L2384-L2392>`_  
=============  =============================================================================================================================================================================

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

=============  ======================================================================================================================================================================
  Signature                                                                                  Definition                                                                              
=============  ======================================================================================================================================================================
  `(Array)`      ``array_item`` `numba/np/arrayobj.py lines 629-641 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L629-L641>`_  
=============  ======================================================================================================================================================================

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

=============  ===============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                   
=============  ===============================================================================================================================================================================
  `(Array)`      ``array_nonzero`` `numba/np/arraymath.py lines 3299-3354 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arraymath.py#L3299-L3354>`_  
=============  ===============================================================================================================================================================================

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

=============  ===========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                 
=============  ===========================================================================================================================================================================
  `(Array)`      ``array_ravel`` `numba/np/arrayobj.py lines 2353-2373 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L2353-L2373>`_  
=============  ===========================================================================================================================================================================

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

========================  ====================================================================================================================================================================================
       Signature                                                                                               Definition                                                                                     
========================  ====================================================================================================================================================================================
    `(Array, *any)`         ``array_reshape_vararg`` `numba/np/arrayobj.py lines 2260-2263 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L2260-L2263>`_  
  `(Array, BaseTuple)`         ``array_reshape`` `numba/np/arrayobj.py lines 2195-2257 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L2195-L2257>`_      
========================  ====================================================================================================================================================================================

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

=============  ==========================================================================================================================================================================
  Signature                                                                                    Definition                                                                                
=============  ==========================================================================================================================================================================
  `(Array)`      ``array_sort`` `numba/np/arrayobj.py lines 6741-6752 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L6741-L6752>`_  
=============  ==========================================================================================================================================================================

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

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

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

========================  ======================================================================================================================================================================================
       Signature                                                                                                Definition                                                                                      
========================  ======================================================================================================================================================================================
       `(Array)`               ``array_transpose`` `numba/np/arrayobj.py lines 1893-1895 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L1893-L1895>`_      
    `(Array, *any)`         ``array_transpose_vararg`` `numba/np/arrayobj.py lines 1968-1971 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L1968-L1971>`_  
  `(Array, BaseTuple)`      ``array_transpose_tuple`` `numba/np/arrayobj.py lines 1913-1965 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L1913-L1965>`_   
========================  ======================================================================================================================================================================================

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

========================  ==========================================================================================================================================================================
       Signature                                                                                          Definition                                                                                
========================  ==========================================================================================================================================================================
  `(Array, DTypeSpec)`      ``array_view`` `numba/np/arrayobj.py lines 2845-2882 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L2845-L2882>`_  
========================  ==========================================================================================================================================================================

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

===============  ==========================================================================================================================================================================================
   Signature                                                                                             Definition                                                                                        
===============  ==========================================================================================================================================================================================
  `(Complex)`      ``complex_conjugate_impl`` `numba/cpython/numbers.py lines 969-975 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L969-L975>`_  
   `(Float)`        ``real_conjugate_impl`` `numba/cpython/numbers.py lines 984-985 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L984-L985>`_    
  `(Integer)`       ``real_conjugate_impl`` `numba/cpython/numbers.py lines 984-985 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L984-L985>`_    
===============  ==========================================================================================================================================================================================

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

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

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

==============================  ===============================================================================================================================================================================================================
          Signature                                                                                                               Definition                                                                                                   
==============================  ===============================================================================================================================================================================================================
          `(Buffer)`                                 ``getiter_array`` `numba/np/arrayobj.py lines 357-378 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L357-L378>`_                     
  `(DictItemsIterableType)`                ``impl_iterable_getiter`` `numba/typed/dictobject.py lines 987-1018 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/typed/dictobject.py#L987-L1018>`_           
   `(DictKeysIterableType)`                ``impl_iterable_getiter`` `numba/typed/dictobject.py lines 987-1018 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/typed/dictobject.py#L987-L1018>`_           
         `(DictType)`                       ``impl_dict_getiter`` `numba/typed/dictobject.py lines 1021-1052 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/typed/dictobject.py#L1021-L1052>`_            
  `(DictValuesIterableType)`               ``impl_iterable_getiter`` `numba/typed/dictobject.py lines 987-1018 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/typed/dictobject.py#L987-L1018>`_           
       `(IteratorType)`                        ``iterator_getiter`` `numba/cpython/iterators.py lines 12-15 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/iterators.py#L12-L15>`_                
           `(List)`                              ``getiter_list`` `numba/cpython/listobj.py lines 490-493 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L490-L493>`_                  
         `(ListType)`                         ``getiter_list`` `numba/typed/listobject.py lines 1516-1520 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/typed/listobject.py#L1516-L1520>`_               
      `(NamedUniTuple)`                       ``getiter_unituple`` `numba/cpython/tupleobj.py lines 138-154 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L138-L154>`_               
           `(Set)`                               ``getiter_set`` `numba/cpython/setobj.py lines 1284-1287 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/setobj.py#L1284-L1287>`_                 
         `(UniTuple)`                         ``getiter_unituple`` `numba/cpython/tupleobj.py lines 138-154 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L138-L154>`_               
       `(UnicodeType)`                        ``getiter_unicode`` `numba/cpython/unicode.py lines 2611-2632 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/unicode.py#L2611-L2632>`_              
    `(range_state_int32)`         ``make_range_impl.<locals>.getiter_range32_impl`` `numba/cpython/rangeobj.py lines 87-95 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L87-L95>`_  
    `(range_state_int64)`         ``make_range_impl.<locals>.getiter_range32_impl`` `numba/cpython/rangeobj.py lines 87-95 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L87-L95>`_  
    `(range_state_uint64)`        ``make_range_impl.<locals>.getiter_range32_impl`` `numba/cpython/rangeobj.py lines 87-95 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L87-L95>`_  
==============================  ===============================================================================================================================================================================================================

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

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

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

=================  ===============================================================================================================================================================================
    Signature                                                                                        Definition                                                                                   
=================  ===============================================================================================================================================================================
  `(List, any)`      ``list_append`` `numba/cpython/listobj.py lines 868-878 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L868-L878>`_  
=================  ===============================================================================================================================================================================

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

=============  ==============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                  
=============  ==============================================================================================================================================================================
  `(List)`       ``list_clear`` `numba/cpython/listobj.py lines 880-885 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L880-L885>`_  
=============  ==============================================================================================================================================================================

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

==========================  ===============================================================================================================================================================================
        Signature                                                                                             Definition                                                                                   
==========================  ===============================================================================================================================================================================
  `(List, IterableType)`      ``list_extend`` `numba/cpython/listobj.py lines 926-939 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L926-L939>`_  
==========================  ===============================================================================================================================================================================

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

==========================  ===============================================================================================================================================================================
        Signature                                                                                             Definition                                                                                   
==========================  ===============================================================================================================================================================================
  `(List, Integer, any)`      ``list_insert`` `numba/cpython/listobj.py lines 974-989 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L974-L989>`_  
==========================  ===============================================================================================================================================================================

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

=====================  ================================================================================================================================================================================
      Signature                                                                                           Definition                                                                                   
=====================  ================================================================================================================================================================================
      `(List)`            ``list_pop`` `numba/cpython/listobj.py lines 991-1003 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L991-L1003>`_   
  `(List, Integer)`      ``list_pop`` `numba/cpython/listobj.py lines 1005-1021 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L1005-L1021>`_  
=====================  ================================================================================================================================================================================

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

================  ============================================================================================================================================================================
   Signature                                                                                       Definition                                                                                 
================  ============================================================================================================================================================================
  `(any, any)`      ``not_in`` `numba/cpython/builtins.py lines 414-420 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L414-L420>`_  
================  ============================================================================================================================================================================

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

===============  ========================================================================================================================================================================================
   Signature                                                                                            Definition                                                                                       
===============  ========================================================================================================================================================================================
  `(Boolean)`      ``number_item_impl`` `numba/cpython/numbers.py lines 1200-1206 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1200-L1206>`_  
  `(Number)`       ``number_item_impl`` `numba/cpython/numbers.py lines 1200-1206 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1200-L1206>`_  
===============  ========================================================================================================================================================================================

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

===============  ===================================================================================================================================================================================
   Signature                                                                                         Definition                                                                                     
===============  ===================================================================================================================================================================================
  `(Literal)`      ``print_item_impl`` `numba/cpython/printimpl.py lines 15-30 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/printimpl.py#L15-L30>`_  
    `(any)`        ``print_item_impl`` `numba/cpython/printimpl.py lines 33-61 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/printimpl.py#L33-L61>`_  
===============  ===================================================================================================================================================================================

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

================  =============================================================================================================================================================================
   Signature                                                                                       Definition                                                                                  
================  =============================================================================================================================================================================
  `(Set, any)`      ``set_add`` `numba/cpython/setobj.py lines 1301-1307 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/setobj.py#L1301-L1307>`_  
================  =============================================================================================================================================================================

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

=========================  ================================================================================================================================================================================
        Signature                                                                                             Definition                                                                                   
=========================  ================================================================================================================================================================================
  `(Set, IterableType)`      ``set_update`` `numba/cpython/setobj.py lines 1468-1496 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/setobj.py#L1468-L1496>`_  
=========================  ================================================================================================================================================================================

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

==========================  =================================================================================================================================================================================
        Signature                                                                                              Definition                                                                                    
==========================  =================================================================================================================================================================================
  `(SliceType, Integer)`      ``slice_indices`` `numba/cpython/slicing.py lines 218-240 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/slicing.py#L218-L240>`_  
==========================  =================================================================================================================================================================================

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

========================================  ===========================================================================================================================================================================================
               Signature                                                                                                          Definition                                                                                         
========================================  ===========================================================================================================================================================================================
        `(Array, StringLiteral)`               ``array_record_getitem`` `numba/np/arrayobj.py lines 3258-3264 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L3258-L3264>`_      
     `(BaseTuple, IntegerLiteral)`          ``static_getitem_tuple`` `numba/cpython/tupleobj.py lines 346-371 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L346-L371>`_   
      `(BaseTuple, SliceLiteral)`           ``static_getitem_tuple`` `numba/cpython/tupleobj.py lines 346-371 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L346-L371>`_   
      `(EnumClass, StringLiteral)`             ``enum_class_getitem`` `numba/cpython/enumimpl.py lines 73-81 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/enumimpl.py#L73-L81>`_      
    `(LiteralList, IntegerLiteral)`         ``static_getitem_tuple`` `numba/cpython/tupleobj.py lines 346-371 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L346-L371>`_   
     `(LiteralList, SliceLiteral)`          ``static_getitem_tuple`` `numba/cpython/tupleobj.py lines 346-371 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L346-L371>`_   
  `(LiteralStrKeyDict, StringLiteral)`      ``static_getitem_tuple`` `numba/cpython/tupleobj.py lines 346-371 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L346-L371>`_   
          `(NumberClass, any)`              ``static_getitem_number_clazz`` `numba/np/arrayobj.py lines 3178-3196 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L3178-L3196>`_  
       `(Record, IntegerLiteral)`            ``record_static_getitem_int`` `numba/np/arrayobj.py lines 3346-3355 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L3346-L3355>`_   
       `(Record, StringLiteral)`             ``record_static_getitem_str`` `numba/np/arrayobj.py lines 3337-3343 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L3337-L3343>`_   
========================================  ===========================================================================================================================================================================================

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

===================================  =========================================================================================================================================================================================
             Signature                                                                                                      Definition                                                                                        
===================================  =========================================================================================================================================================================================
  `(Record, IntegerLiteral, any)`      ``record_static_setitem_int`` `numba/np/arrayobj.py lines 3371-3382 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L3371-L3382>`_  
  `(Record, StringLiteral, any)`       ``record_static_setitem_str`` `numba/np/arrayobj.py lines 3358-3368 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L3358-L3368>`_  
===================================  =========================================================================================================================================================================================

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

======================  ===================================================================================================================================================================================
      Signature                                                                                             Definition                                                                                     
======================  ===================================================================================================================================================================================
  `(BaseTuple, any)`      ``getitem_typed`` `numba/cpython/tupleobj.py lines 206-288 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L206-L288>`_  
======================  ===================================================================================================================================================================================

``(<class 'numba.core.types.containers.BaseTuple'>, '__hash__')``
-----------------------------------------------------------------

=======================  ===========================================================================================================================================================================================================================================
       Signature                                                                                                                         Definition                                                                                                                 
=======================  ===========================================================================================================================================================================================================================================
  `(BaseTuple, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.BaseTuple'>, 'index')``
--------------------------------------------------------------

=======================  ===========================================================================================================================================================================================================================================
       Signature                                                                                                                         Definition                                                                                                                 
=======================  ===========================================================================================================================================================================================================================================
  `(BaseTuple, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, '_to_str')``
------------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'center')``
-----------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'endswith')``
-------------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'find')``
---------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'isascii')``
------------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'join')``
---------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'ljust')``
----------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'lstrip')``
-----------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'rfind')``
----------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'rjust')``
----------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'rstrip')``
-----------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'split')``
----------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'startswith')``
---------------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'strip')``
----------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Bytes'>, 'zfill')``
----------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Bytes, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.DictType'>, '__setitem__')``
-------------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(DictType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.DictType'>, 'clear')``
-------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(DictType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.DictType'>, 'copy')``
------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(DictType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.DictType'>, 'get')``
-----------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(DictType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.DictType'>, 'items')``
-------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(DictType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.DictType'>, 'keys')``
------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(DictType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.DictType'>, 'pop')``
-----------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(DictType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.DictType'>, 'popitem')``
---------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(DictType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.DictType'>, 'setdefault')``
------------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(DictType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.DictType'>, 'update')``
--------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(DictType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.DictType'>, 'values')``
--------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(DictType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.List'>, 'copy')``
--------------------------------------------------------

==================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                       Definition                                                                                                                 
==================  ===========================================================================================================================================================================================================================================
  `(List, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
==================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.List'>, 'count')``
---------------------------------------------------------

==================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                       Definition                                                                                                                 
==================  ===========================================================================================================================================================================================================================================
  `(List, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
==================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.List'>, 'index')``
---------------------------------------------------------

==================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                       Definition                                                                                                                 
==================  ===========================================================================================================================================================================================================================================
  `(List, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
==================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.List'>, 'remove')``
----------------------------------------------------------

==================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                       Definition                                                                                                                 
==================  ===========================================================================================================================================================================================================================================
  `(List, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
==================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.List'>, 'reverse')``
-----------------------------------------------------------

==================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                       Definition                                                                                                                 
==================  ===========================================================================================================================================================================================================================================
  `(List, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
==================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.List'>, 'sort')``
--------------------------------------------------------

==================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                       Definition                                                                                                                 
==================  ===========================================================================================================================================================================================================================================
  `(List, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
==================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, '_allocated')``
------------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, '_is_mutable')``
-------------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, '_make_immutable')``
-----------------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, '_make_mutable')``
---------------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, 'append')``
--------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, 'clear')``
-------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, 'copy')``
------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, 'count')``
-------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, 'extend')``
--------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, 'getitem_unchecked')``
-------------------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, 'index')``
-------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, 'insert')``
--------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, 'pop')``
-----------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, 'remove')``
--------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, 'reverse')``
---------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.ListType'>, 'sort')``
------------------------------------------------------------

======================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                         Definition                                                                                                                 
======================  ===========================================================================================================================================================================================================================================
  `(ListType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralList'>, 'append')``
-----------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(LiteralList, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralList'>, 'clear')``
----------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(LiteralList, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralList'>, 'copy')``
---------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(LiteralList, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralList'>, 'count')``
----------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(LiteralList, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralList'>, 'extend')``
-----------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(LiteralList, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralList'>, 'index')``
----------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(LiteralList, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralList'>, 'insert')``
-----------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(LiteralList, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralList'>, 'pop')``
--------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(LiteralList, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralList'>, 'remove')``
-----------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(LiteralList, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralList'>, 'reverse')``
------------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(LiteralList, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralList'>, 'sort')``
---------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(LiteralList, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralStrKeyDict'>, 'clear')``
----------------------------------------------------------------------

===============================  ===========================================================================================================================================================================================================================================
           Signature                                                                                                                             Definition                                                                                                                 
===============================  ===========================================================================================================================================================================================================================================
  `(LiteralStrKeyDict, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralStrKeyDict'>, 'copy')``
---------------------------------------------------------------------

===============================  ===========================================================================================================================================================================================================================================
           Signature                                                                                                                             Definition                                                                                                                 
===============================  ===========================================================================================================================================================================================================================================
  `(LiteralStrKeyDict, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralStrKeyDict'>, 'get')``
--------------------------------------------------------------------

===============================  ===========================================================================================================================================================================================================================================
           Signature                                                                                                                             Definition                                                                                                                 
===============================  ===========================================================================================================================================================================================================================================
  `(LiteralStrKeyDict, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralStrKeyDict'>, 'items')``
----------------------------------------------------------------------

===============================  ===========================================================================================================================================================================================================================================
           Signature                                                                                                                             Definition                                                                                                                 
===============================  ===========================================================================================================================================================================================================================================
  `(LiteralStrKeyDict, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralStrKeyDict'>, 'keys')``
---------------------------------------------------------------------

===============================  ===========================================================================================================================================================================================================================================
           Signature                                                                                                                             Definition                                                                                                                 
===============================  ===========================================================================================================================================================================================================================================
  `(LiteralStrKeyDict, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralStrKeyDict'>, 'pop')``
--------------------------------------------------------------------

===============================  ===========================================================================================================================================================================================================================================
           Signature                                                                                                                             Definition                                                                                                                 
===============================  ===========================================================================================================================================================================================================================================
  `(LiteralStrKeyDict, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralStrKeyDict'>, 'popitem')``
------------------------------------------------------------------------

===============================  ===========================================================================================================================================================================================================================================
           Signature                                                                                                                             Definition                                                                                                                 
===============================  ===========================================================================================================================================================================================================================================
  `(LiteralStrKeyDict, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralStrKeyDict'>, 'setdefault')``
---------------------------------------------------------------------------

===============================  ===========================================================================================================================================================================================================================================
           Signature                                                                                                                             Definition                                                                                                                 
===============================  ===========================================================================================================================================================================================================================================
  `(LiteralStrKeyDict, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralStrKeyDict'>, 'update')``
-----------------------------------------------------------------------

===============================  ===========================================================================================================================================================================================================================================
           Signature                                                                                                                             Definition                                                                                                                 
===============================  ===========================================================================================================================================================================================================================================
  `(LiteralStrKeyDict, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.LiteralStrKeyDict'>, 'values')``
-----------------------------------------------------------------------

===============================  ===========================================================================================================================================================================================================================================
           Signature                                                                                                                             Definition                                                                                                                 
===============================  ===========================================================================================================================================================================================================================================
  `(LiteralStrKeyDict, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'clear')``
--------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'copy')``
-------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'difference')``
-------------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'difference_update')``
--------------------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'discard')``
----------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'intersection')``
---------------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'intersection_update')``
----------------------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'isdisjoint')``
-------------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'issubset')``
-----------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'issuperset')``
-------------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'pop')``
------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'remove')``
---------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'symmetric_difference')``
-----------------------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'symmetric_difference_update')``
------------------------------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.containers.Set'>, 'union')``
--------------------------------------------------------

=================  ===========================================================================================================================================================================================================================================
    Signature                                                                                                                      Definition                                                                                                                 
=================  ===========================================================================================================================================================================================================================================
  `(Set, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, '__hash__')``
-------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, '__repr__')``
-------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, '__str__')``
------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, '_to_bytes')``
--------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'capitalize')``
---------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'casefold')``
-------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'center')``
-----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'count')``
----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'endswith')``
-------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'expandtabs')``
---------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'find')``
---------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'index')``
----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'isalnum')``
------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'isalpha')``
------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'isascii')``
------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'isdecimal')``
--------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'isdigit')``
------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'isidentifier')``
-----------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'islower')``
------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'isnumeric')``
--------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'isprintable')``
----------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'isspace')``
------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'istitle')``
------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'isupper')``
------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'join')``
---------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'ljust')``
----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'lower')``
----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'lstrip')``
-----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'partition')``
--------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'replace')``
------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'rfind')``
----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'rindex')``
-----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'rjust')``
----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'rpartition')``
---------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'rsplit')``
-----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'rstrip')``
-----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'split')``
----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'splitlines')``
---------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'startswith')``
---------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'strip')``
----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'swapcase')``
-------------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'title')``
----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'upper')``
----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.misc.UnicodeType'>, 'zfill')``
----------------------------------------------------------

=========================  ===========================================================================================================================================================================================================================================
        Signature                                                                                                                          Definition                                                                                                                 
=========================  ===========================================================================================================================================================================================================================================
  `(UnicodeType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, '_zero_fill')``
-------------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'all')``
------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'allclose')``
-----------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'any')``
------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'argmax')``
---------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'argmin')``
---------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'clip')``
-------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'conj')``
-------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'conjugate')``
------------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'cumprod')``
----------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'cumsum')``
---------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'dot')``
------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'fill')``
-------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'max')``
------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'mean')``
-------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'min')``
------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'prod')``
-------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'repeat')``
---------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'std')``
------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'take')``
-------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'tobytes')``
----------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.Array'>, 'var')``
------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Array, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, '__hash__')``
-------------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, '_get_kind')``
--------------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, '_to_str')``
------------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'center')``
-----------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'endswith')``
-------------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'find')``
---------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'isascii')``
------------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'isupper')``
------------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'join')``
---------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'ljust')``
----------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'lstrip')``
-----------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'rfind')``
----------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'rjust')``
----------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'rstrip')``
-----------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'split')``
----------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'startswith')``
---------------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'strip')``
----------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'upper')``
----------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.CharSeq'>, 'zfill')``
----------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(CharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'beta')``
--------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'binomial')``
------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'chisquare')``
-------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'exponential')``
---------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'f')``
-----------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'gamma')``
---------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'geometric')``
-------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'integers')``
------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'laplace')``
-----------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'logistic')``
------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'lognormal')``
-------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'logseries')``
-------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'negative_binomial')``
---------------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'noncentral_chisquare')``
------------------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'noncentral_f')``
----------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'normal')``
----------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'pareto')``
----------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'permutation')``
---------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'poisson')``
-----------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'power')``
---------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'random')``
----------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'rayleigh')``
------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'shuffle')``
-----------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'standard_cauchy')``
-------------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'standard_exponential')``
------------------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'standard_gamma')``
------------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'standard_normal')``
-------------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'standard_t')``
--------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'triangular')``
--------------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'uniform')``
-----------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'wald')``
--------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'weibull')``
-----------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.NumPyRandomGeneratorType'>, 'zipf')``
--------------------------------------------------------------------------

======================================  ===========================================================================================================================================================================================================================================
              Signature                                                                                                                                 Definition                                                                                                                 
======================================  ===========================================================================================================================================================================================================================================
  `(NumPyRandomGeneratorType, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
======================================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, '__hash__')``
--------------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, '__str__')``
-------------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, '_get_kind')``
---------------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'center')``
------------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'endswith')``
--------------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'find')``
----------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'isascii')``
-------------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'isupper')``
-------------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'join')``
----------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'ljust')``
-----------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'lstrip')``
------------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'rfind')``
-----------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'rjust')``
-----------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'rstrip')``
------------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'split')``
-----------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'startswith')``
----------------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'strip')``
-----------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'upper')``
-----------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.npytypes.UnicodeCharSeq'>, 'zfill')``
-----------------------------------------------------------------

============================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                            Definition                                                                                                                 
============================  ===========================================================================================================================================================================================================================================
  `(UnicodeCharSeq, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
============================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.scalars.Boolean'>, '__hash__')``
------------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(Boolean, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.scalars.Boolean'>, '__repr__')``
------------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(Boolean, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.scalars.Boolean'>, '__str__')``
-----------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(Boolean, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.scalars.Complex'>, '__hash__')``
------------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(Complex, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.scalars.Float'>, '__hash__')``
----------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Float, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.scalars.Float'>, 'view')``
------------------------------------------------------

===================  ===========================================================================================================================================================================================================================================
     Signature                                                                                                                       Definition                                                                                                                 
===================  ===========================================================================================================================================================================================================================================
  `(Float, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.scalars.IntEnumMember'>, '__hash__')``
------------------------------------------------------------------

===========================  ===========================================================================================================================================================================================================================================
         Signature                                                                                                                           Definition                                                                                                                 
===========================  ===========================================================================================================================================================================================================================================
  `(IntEnumMember, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
===========================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.scalars.Integer'>, '__hash__')``
------------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(Integer, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.scalars.Integer'>, '__repr__')``
------------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(Integer, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.scalars.Integer'>, '__str__')``
-----------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(Integer, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.scalars.Integer'>, 'view')``
--------------------------------------------------------

=====================  ===========================================================================================================================================================================================================================================
      Signature                                                                                                                        Definition                                                                                                                 
=====================  ===========================================================================================================================================================================================================================================
  `(Integer, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================  ===========================================================================================================================================================================================================================================

``(<class 'numba.core.types.scalars.NPDatetime'>, '__hash__')``
---------------------------------------------------------------

========================  ===========================================================================================================================================================================================================================================
       Signature                                                                                                                          Definition                                                                                                                 
========================  ===========================================================================================================================================================================================================================================
  `(NPDatetime, *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
========================  ===========================================================================================================================================================================================================================================

``(typeref[<class 'numba.core.types.containers.DictType'>], 'empty')``
----------------------------------------------------------------------

=====================================================================  ===========================================================================================================================================================================================================================================
                              Signature                                                                                                                                                Definition                                                                                                                 
=====================================================================  ===========================================================================================================================================================================================================================================
  `(typeref[<class 'numba.core.types.containers.DictType'>], *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================================================================  ===========================================================================================================================================================================================================================================

``(typeref[<class 'numba.core.types.containers.ListType'>], 'empty_list')``
---------------------------------------------------------------------------

=====================================================================  ===========================================================================================================================================================================================================================================
                              Signature                                                                                                                                                Definition                                                                                                                 
=====================================================================  ===========================================================================================================================================================================================================================================
  `(typeref[<class 'numba.core.types.containers.ListType'>], *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
=====================================================================  ===========================================================================================================================================================================================================================================

``(typeref[<class 'numba.core.types.npytypes.Array'>], '_allocate')``
---------------------------------------------------------------------

================================================================  ===========================================================================================================================================================================================================================================
                           Signature                                                                                                                                              Definition                                                                                                                 
================================================================  ===========================================================================================================================================================================================================================================
  `(typeref[<class 'numba.core.types.npytypes.Array'>], *any)`      ``_OverloadMethodTemplate._init_once.<locals>.method_impl`` `numba/core/typing/templates.py lines 1108-1117 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/typing/templates.py#L1108-L1117>`_  
================================================================  ===========================================================================================================================================================================================================================================

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

================================  ========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                       
================================  ========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
    `(BaseTuple, BaseTuple)`                              ``tuple_add`` `numba/cpython/tupleobj.py lines 29-34 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L29-L34>`_                         
      `(Complex, Complex)`                          ``complex_add_impl`` `numba/cpython/numbers.py lines 1037-1050 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1037-L1050>`_                  
        `(Float, Float)`                               ``real_add_impl`` `numba/cpython/numbers.py lines 616-618 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L616-L618>`_                      
      `(Integer, Integer)`                                ``int_add_impl`` `numba/cpython/numbers.py lines 35-41 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L35-L41>`_                        
         `(List, List)`                                   ``list_add`` `numba/cpython/listobj.py lines 687-707 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L687-L707>`_                        
  `(NPDatetime, NPTimedelta)`                       ``datetime_plus_timedelta`` `numba/np/npdatetime.py lines 591-600 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L591-L600>`_                   
  `(NPTimedelta, NPDatetime)`                       ``timedelta_plus_datetime`` `numba/np/npdatetime.py lines 603-612 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L603-L612>`_                   
  `(NPTimedelta, NPTimedelta)`                         ``timedelta_add_impl`` `numba/np/npdatetime.py lines 183-194 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L183-L194>`_                     
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
================================  ========================================================================================================================================================================================================================

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

========================  ========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                       
========================  ========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
  `(Boolean, Boolean)`                          ``int_and_impl`` `numba/cpython/numbers.py lines 433-439 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L433-L439>`_                      
  `(Integer, Integer)`                          ``int_and_impl`` `numba/cpython/numbers.py lines 433-439 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L433-L439>`_                      
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
========================  ========================================================================================================================================================================================================================

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

=====================  ============================================================================================================================================================================
      Signature                                                                                         Definition                                                                                 
=====================  ============================================================================================================================================================================
  `(Sequence, any)`       ``in_seq`` `numba/cpython/listobj.py lines 661-669 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L661-L669>`_   
    `(Set, any)`         ``in_set`` `numba/cpython/setobj.py lines 1279-1282 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/setobj.py#L1279-L1282>`_  
=====================  ============================================================================================================================================================================

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

=======================  ======================================================================================================================================================================================
       Signature                                                                                               Definition                                                                                      
=======================  ======================================================================================================================================================================================
   `(List, Integer)`       ``delitem_list_index`` `numba/cpython/listobj.py lines 617-623 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L617-L623>`_  
  `(List, SliceType)`         ``delitem_list`` `numba/cpython/listobj.py lines 626-656 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L626-L656>`_     
=======================  ======================================================================================================================================================================================

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

============================================  ========================================================================================================================================================================================================================
                 Signature                                                                                                                           Definition                                                                                                       
============================================  ========================================================================================================================================================================================================================
              `(Array, Array)`                  ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
               `(Array, any)`                   ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
          `(BaseTuple, BaseTuple)`                                     ``tuple_eq`` `numba/cpython/tupleobj.py lines 58-71 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L58-L71>`_                         
            `(Complex, Complex)`                                ``complex_eq_impl`` `numba/cpython/numbers.py lines 1143-1152 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1143-L1152>`_                   
              `(DType, DType)`                                       ``dtype_eq_impl`` `numba/np/arrayobj.py lines 4299-4303 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L4299-L4303>`_                        
         `(EnumMember, EnumMember)`                                    ``enum_eq`` `numba/cpython/enumimpl.py lines 13-19 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/enumimpl.py#L13-L19>`_                          
              `(Float, Float)`                                      ``real_eq_impl`` `numba/cpython/numbers.py lines 864-866 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L864-L866>`_                      
            `(Integer, Integer)`                                    ``int_eq_impl`` `numba/cpython/numbers.py lines 356-358 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L356-L358>`_                       
     `(IntegerLiteral, IntegerLiteral)`                           ``const_eq_impl`` `numba/cpython/builtins.py lines 107-115 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L107-L115>`_                     
               `(List, List)`                                         ``list_eq`` `numba/cpython/listobj.py lines 773-795 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L773-L795>`_                         
            `(Literal, Literal)`                                  ``const_eq_impl`` `numba/cpython/builtins.py lines 107-115 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L107-L115>`_                     
  `(LiteralStrKeyDict, LiteralStrKeyDict)`              ``literalstrkeydict_impl_equals`` `numba/typed/dictobject.py lines 1225-1231 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/typed/dictobject.py#L1225-L1231>`_           
         `(NPDatetime, NPDatetime)`                  ``_create_datetime_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 651-673 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L651-L673>`_       
        `(NPTimedelta, NPTimedelta)`                ``_create_timedelta_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 372-394 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L372-L394>`_       
               `(any, Array)`                   ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
               `(bool, bool)`                                       ``int_eq_impl`` `numba/cpython/numbers.py lines 356-358 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L356-L358>`_                       
============================================  ========================================================================================================================================================================================================================

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

================================  ========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                       
================================  ========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
        `(Float, Float)`                             ``real_floordiv_impl`` `numba/cpython/numbers.py lines 813-829 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L813-L829>`_                   
      `(Integer, Integer)`                           ``int_floordiv_impl`` `numba/cpython/numbers.py lines 168-173 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L168-L173>`_                    
     `(NPTimedelta, Float)`                          ``timedelta_over_number`` `numba/np/npdatetime.py lines 250-278 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L250-L278>`_                    
    `(NPTimedelta, Integer)`                         ``timedelta_over_number`` `numba/np/npdatetime.py lines 250-278 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L250-L278>`_                    
  `(NPTimedelta, NPTimedelta)`                   ``timedelta_floor_div_timedelta`` `numba/np/npdatetime.py lines 299-332 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L299-L332>`_                
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
================================  ========================================================================================================================================================================================================================

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

======================================  ========================================================================================================================================================================================================================
              Signature                                                                                                                        Definition                                                                                                       
======================================  ========================================================================================================================================================================================================================
           `(Array, Array)`               ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
            `(Array, any)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
       `(BaseTuple, BaseTuple)`                                  ``tuple_ge`` `numba/cpython/tupleobj.py lines 93-96 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L93-L96>`_                         
           `(Float, Float)`                                   ``real_ge_impl`` `numba/cpython/numbers.py lines 859-861 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L859-L861>`_                      
  `(IntegerLiteral, IntegerLiteral)`                          ``int_slt_impl`` `numba/cpython/numbers.py lines 316-318 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L316-L318>`_                      
      `(NPDatetime, NPDatetime)`               ``_create_datetime_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 651-673 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L651-L673>`_       
     `(NPTimedelta, NPTimedelta)`              ``_create_timedelta_ordering_impl.<locals>.impl`` `numba/np/npdatetime.py lines 400-413 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L400-L413>`_        
            `(any, Array)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
            `(bool, bool)`                                    ``int_uge_impl`` `numba/cpython/numbers.py lines 351-353 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L351-L353>`_                      
           `(int16, int16)`                                   ``int_sge_impl`` `numba/cpython/numbers.py lines 331-333 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L331-L333>`_                      
           `(int32, int32)`                                   ``int_sge_impl`` `numba/cpython/numbers.py lines 331-333 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L331-L333>`_                      
           `(int64, int64)`                                   ``int_sge_impl`` `numba/cpython/numbers.py lines 331-333 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L331-L333>`_                      
            `(int8, int8)`                                    ``int_sge_impl`` `numba/cpython/numbers.py lines 331-333 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L331-L333>`_                      
          `(uint16, uint16)`                                  ``int_uge_impl`` `numba/cpython/numbers.py lines 351-353 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L351-L353>`_                      
          `(uint32, uint32)`                                  ``int_uge_impl`` `numba/cpython/numbers.py lines 351-353 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L351-L353>`_                      
          `(uint64, uint64)`                                  ``int_uge_impl`` `numba/cpython/numbers.py lines 351-353 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L351-L353>`_                      
           `(uint8, uint8)`                                   ``int_uge_impl`` `numba/cpython/numbers.py lines 351-353 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L351-L353>`_                      
======================================  ========================================================================================================================================================================================================================

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

==============================  ======================================================================================================================================================================================
          Signature                                                                                                   Definition                                                                                      
==============================  ======================================================================================================================================================================================
      `(Buffer, Array)`            ``fancy_getitem_array`` `numba/np/arrayobj.py lines 1194-1211 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L1194-L1211>`_    
    `(Buffer, BaseTuple)`            ``getitem_array_tuple`` `numba/np/arrayobj.py lines 552-574 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L552-L574>`_      
     `(Buffer, Integer)`             ``getitem_arraynd_intp`` `numba/np/arrayobj.py lines 535-549 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L535-L549>`_     
    `(Buffer, SliceType)`            ``getitem_arraynd_intp`` `numba/np/arrayobj.py lines 535-549 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L535-L549>`_     
    `(CPointer, Integer)`         ``getitem_cpointer`` `numba/cpython/builtins.py lines 178-183 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L178-L183>`_  
      `(List, Integer)`              ``getitem_list`` `numba/cpython/listobj.py lines 510-519 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L510-L519>`_     
     `(List, SliceType)`            ``getslice_list`` `numba/cpython/listobj.py lines 533-554 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L533-L554>`_     
   `(NamedUniTuple, int64)`       ``getitem_unituple`` `numba/cpython/tupleobj.py lines 291-343 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L291-L343>`_  
  `(NamedUniTuple, uint64)`       ``getitem_unituple`` `numba/cpython/tupleobj.py lines 291-343 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L291-L343>`_  
  `(NumpyFlatType, Integer)`      ``iternext_numpy_getitem`` `numba/np/arrayobj.py lines 4141-4154 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L4141-L4154>`_  
     `(UniTuple, int64)`          ``getitem_unituple`` `numba/cpython/tupleobj.py lines 291-343 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L291-L343>`_  
     `(UniTuple, uint64)`         ``getitem_unituple`` `numba/cpython/tupleobj.py lines 291-343 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L291-L343>`_  
==============================  ======================================================================================================================================================================================

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

======================================  ========================================================================================================================================================================================================================
              Signature                                                                                                                        Definition                                                                                                       
======================================  ========================================================================================================================================================================================================================
           `(Array, Array)`               ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
            `(Array, any)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
       `(BaseTuple, BaseTuple)`                                  ``tuple_gt`` `numba/cpython/tupleobj.py lines 88-91 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L88-L91>`_                         
           `(Float, Float)`                                   ``real_gt_impl`` `numba/cpython/numbers.py lines 854-856 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L854-L856>`_                      
  `(IntegerLiteral, IntegerLiteral)`                          ``int_slt_impl`` `numba/cpython/numbers.py lines 316-318 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L316-L318>`_                      
      `(NPDatetime, NPDatetime)`               ``_create_datetime_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 651-673 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L651-L673>`_       
     `(NPTimedelta, NPTimedelta)`              ``_create_timedelta_ordering_impl.<locals>.impl`` `numba/np/npdatetime.py lines 400-413 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L400-L413>`_        
            `(any, Array)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
            `(bool, bool)`                                    ``int_ugt_impl`` `numba/cpython/numbers.py lines 346-348 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L346-L348>`_                      
           `(int16, int16)`                                   ``int_sgt_impl`` `numba/cpython/numbers.py lines 326-328 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L326-L328>`_                      
           `(int32, int32)`                                   ``int_sgt_impl`` `numba/cpython/numbers.py lines 326-328 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L326-L328>`_                      
           `(int64, int64)`                                   ``int_sgt_impl`` `numba/cpython/numbers.py lines 326-328 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L326-L328>`_                      
            `(int8, int8)`                                    ``int_sgt_impl`` `numba/cpython/numbers.py lines 326-328 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L326-L328>`_                      
          `(uint16, uint16)`                                  ``int_ugt_impl`` `numba/cpython/numbers.py lines 346-348 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L346-L348>`_                      
          `(uint32, uint32)`                                  ``int_ugt_impl`` `numba/cpython/numbers.py lines 346-348 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L346-L348>`_                      
          `(uint64, uint64)`                                  ``int_ugt_impl`` `numba/cpython/numbers.py lines 346-348 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L346-L348>`_                      
           `(uint8, uint8)`                                   ``int_ugt_impl`` `numba/cpython/numbers.py lines 346-348 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L346-L348>`_                      
======================================  ========================================================================================================================================================================================================================

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

================================  =========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                        
================================  =========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
      `(Complex, Complex)`                          ``complex_add_impl`` `numba/cpython/numbers.py lines 1037-1050 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1037-L1050>`_                   
        `(Float, Float)`                                ``real_add_impl`` `numba/cpython/numbers.py lines 616-618 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L616-L618>`_                      
      `(Integer, Integer)`                                ``int_add_impl`` `numba/cpython/numbers.py lines 35-41 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L35-L41>`_                         
         `(List, List)`                               ``list_add_inplace`` `numba/cpython/listobj.py lines 709-714 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L709-L714>`_                     
  `(NPDatetime, NPTimedelta)`                        ``datetime_plus_timedelta`` `numba/np/npdatetime.py lines 591-600 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L591-L600>`_                   
  `(NPTimedelta, NPDatetime)`                        ``timedelta_plus_datetime`` `numba/np/npdatetime.py lines 603-612 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L603-L612>`_                   
  `(NPTimedelta, NPTimedelta)`                         ``timedelta_add_impl`` `numba/np/npdatetime.py lines 183-194 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L183-L194>`_                      
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
================================  =========================================================================================================================================================================================================================

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

========================  =========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                        
========================  =========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
  `(Boolean, Boolean)`                          ``int_and_impl`` `numba/cpython/numbers.py lines 433-439 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L433-L439>`_                       
  `(Integer, Integer)`                          ``int_and_impl`` `numba/cpython/numbers.py lines 433-439 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L433-L439>`_                       
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
========================  =========================================================================================================================================================================================================================

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

============================  =========================================================================================================================================================================================================================
         Signature                                                                                                                   Definition                                                                                                        
============================  =========================================================================================================================================================================================================================
      `(Array, Array)`          ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
       `(Array, any)`           ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
      `(Float, Float)`                           ``real_floordiv_impl`` `numba/cpython/numbers.py lines 813-829 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L813-L829>`_                    
    `(Integer, Integer)`                          ``int_floordiv_impl`` `numba/cpython/numbers.py lines 168-173 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L168-L173>`_                    
   `(NPTimedelta, Float)`                         ``timedelta_over_number`` `numba/np/npdatetime.py lines 250-278 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L250-L278>`_                    
  `(NPTimedelta, Integer)`                        ``timedelta_over_number`` `numba/np/npdatetime.py lines 250-278 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L250-L278>`_                    
       `(any, Array)`           ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
============================  =========================================================================================================================================================================================================================

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

========================  =========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                        
========================  =========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
  `(Integer, Integer)`                          ``int_shl_impl`` `numba/cpython/numbers.py lines 412-418 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L412-L418>`_                       
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
========================  =========================================================================================================================================================================================================================

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

========================  =========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                        
========================  =========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
    `(Float, Float)`                            ``real_mod_impl`` `numba/cpython/numbers.py lines 794-810 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L794-L810>`_                      
  `(Integer, Integer)`                          ``int_rem_impl`` `numba/cpython/numbers.py lines 189-194 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L189-L194>`_                       
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
========================  =========================================================================================================================================================================================================================

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

============================  =========================================================================================================================================================================================================================
         Signature                                                                                                                   Definition                                                                                                        
============================  =========================================================================================================================================================================================================================
      `(Array, Array)`          ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
       `(Array, any)`           ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
    `(Complex, Complex)`                        ``complex_mul_impl`` `numba/cpython/numbers.py lines 1069-1089 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1069-L1089>`_                   
      `(Float, Float)`                              ``real_mul_impl`` `numba/cpython/numbers.py lines 626-628 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L626-L628>`_                      
   `(Float, NPTimedelta)`                        ``number_times_timedelta`` `numba/np/npdatetime.py lines 239-247 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L239-L247>`_                    
    `(Integer, Integer)`                              ``int_mul_impl`` `numba/cpython/numbers.py lines 53-59 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L53-L59>`_                         
  `(Integer, NPTimedelta)`                       ``number_times_timedelta`` `numba/np/npdatetime.py lines 239-247 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L239-L247>`_                    
     `(List, Integer)`                            ``list_mul_inplace`` `numba/cpython/listobj.py lines 742-759 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L742-L759>`_                     
   `(NPTimedelta, Float)`                        ``timedelta_times_number`` `numba/np/npdatetime.py lines 228-236 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L228-L236>`_                    
  `(NPTimedelta, Integer)`                       ``timedelta_times_number`` `numba/np/npdatetime.py lines 228-236 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L228-L236>`_                    
       `(any, Array)`           ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
============================  =========================================================================================================================================================================================================================

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

===============  ======================================================================================================================================================================================================================
   Signature                                                                                                           Definition                                                                                                      
===============  ======================================================================================================================================================================================================================
   `(Array)`       ``register_unary_operator_kernel.<locals>.lower_unary_operator`` `numba/np/npyimpl.py lines 762-763 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L762-L763>`_  
  `(Boolean)`                       ``int_invert_impl`` `numba/cpython/numbers.py lines 476-482 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L476-L482>`_                    
  `(Integer)`                       ``int_invert_impl`` `numba/cpython/numbers.py lines 476-482 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L476-L482>`_                    
===============  ======================================================================================================================================================================================================================

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

========================  =========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                        
========================  =========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
  `(Boolean, Boolean)`                           ``int_or_impl`` `numba/cpython/numbers.py lines 442-448 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L442-L448>`_                       
  `(Integer, Integer)`                           ``int_or_impl`` `numba/cpython/numbers.py lines 442-448 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L442-L448>`_                       
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
========================  =========================================================================================================================================================================================================================

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

===============================  =========================================================================================================================================================================================================================
           Signature                                                                                                                    Definition                                                                                                        
===============================  =========================================================================================================================================================================================================================
       `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
        `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
     `(Complex, Complex)`                          ``complex_power_impl`` `numba/cpython/numbers.py lines 993-1035 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L993-L1035>`_                   
       `(Float, Float)`                               ``real_power_impl`` `numba/cpython/numbers.py lines 832-841 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L832-L841>`_                     
   `(Float, IntegerLiteral)`                         ``static_power_impl`` `numba/cpython/numbers.py lines 251-313 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L251-L313>`_                    
       `(Float, int16)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                      
       `(Float, int32)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                      
       `(Float, int64)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                      
        `(Float, int8)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                      
       `(Float, uint16)`                              ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                      
       `(Float, uint32)`                              ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                      
       `(Float, uint64)`                              ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                      
       `(Float, uint8)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                      
     `(Integer, Integer)`                             ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                      
  `(Integer, IntegerLiteral)`                        ``static_power_impl`` `numba/cpython/numbers.py lines 251-313 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L251-L313>`_                    
        `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
===============================  =========================================================================================================================================================================================================================

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

========================  =========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                        
========================  =========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
  `(Integer, Integer)`                          ``int_shr_impl`` `numba/cpython/numbers.py lines 421-430 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L421-L430>`_                       
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
========================  =========================================================================================================================================================================================================================

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

==============================  ===================================================================================================================================================================================
          Signature                                                                                                 Definition                                                                                     
==============================  ===================================================================================================================================================================================
       `(Array, Array)`                ``array_is`` `numba/np/arrayobj.py lines 3419-3430 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L3419-L3430>`_        
     `(Boolean, Boolean)`          ``bool_is_impl`` `numba/cpython/builtins.py lines 88-103 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L88-L103>`_    
  `(EnumMember, EnumMember)`           ``enum_is`` `numba/cpython/enumimpl.py lines 22-31 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/enumimpl.py#L22-L31>`_       
        `(List, List)`                ``list_is`` `numba/cpython/listobj.py lines 765-771 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L765-L771>`_      
    `(ListType, ListType)`           ``list_is`` `numba/typed/listobject.py lines 222-228 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/typed/listobject.py#L222-L228>`_     
      `(Opaque, Opaque)`              ``opaque_is`` `numba/cpython/builtins.py lines 72-85 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L72-L85>`_      
      `(Optional, none)`             ``optional_is_none`` `numba/core/optional.py lines 18-35 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/optional.py#L18-L35>`_      
         `(Set, Set)`                ``set_is`` `numba/cpython/setobj.py lines 1695-1701 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/setobj.py#L1695-L1701>`_      
         `(any, any)`                ``generic_is`` `numba/cpython/builtins.py lines 46-69 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L46-L69>`_      
      `(none, Optional)`             ``optional_is_none`` `numba/core/optional.py lines 18-35 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/core/optional.py#L10-L11>`_  
==============================  ===================================================================================================================================================================================

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

================  ================================================================================================================================================================================
   Signature                                                                                         Definition                                                                                   
================  ================================================================================================================================================================================
  `(any, any)`      ``generic_is_not`` `numba/cpython/builtins.py lines 37-43 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L37-L43>`_  
================  ================================================================================================================================================================================

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

================================  =========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                        
================================  =========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
      `(Complex, Complex)`                          ``complex_sub_impl`` `numba/cpython/numbers.py lines 1053-1066 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1053-L1066>`_                   
        `(Float, Float)`                                ``real_sub_impl`` `numba/cpython/numbers.py lines 621-623 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L621-L623>`_                      
      `(Integer, Integer)`                                ``int_sub_impl`` `numba/cpython/numbers.py lines 44-50 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L44-L50>`_                         
  `(NPDatetime, NPTimedelta)`                       ``datetime_minus_timedelta`` `numba/np/npdatetime.py lines 617-626 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L617-L626>`_                   
  `(NPTimedelta, NPTimedelta)`                         ``timedelta_sub_impl`` `numba/np/npdatetime.py lines 197-208 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L197-L208>`_                      
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
================================  =========================================================================================================================================================================================================================

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

================================  =========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                        
================================  =========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
      `(Complex, Complex)`                          ``complex_div_impl`` `numba/cpython/numbers.py lines 1094-1123 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1094-L1123>`_                   
        `(Float, Float)`                                ``real_div_impl`` `numba/cpython/numbers.py lines 631-635 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L631-L635>`_                      
      `(Integer, Integer)`                            ``int_truediv_impl`` `numba/cpython/numbers.py lines 176-186 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L176-L186>`_                     
     `(NPTimedelta, Float)`                           ``timedelta_over_number`` `numba/np/npdatetime.py lines 250-278 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L250-L278>`_                    
    `(NPTimedelta, Integer)`                          ``timedelta_over_number`` `numba/np/npdatetime.py lines 250-278 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L250-L278>`_                    
  `(NPTimedelta, NPTimedelta)`                      ``timedelta_over_timedelta`` `numba/np/npdatetime.py lines 281-296 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L281-L296>`_                   
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
================================  =========================================================================================================================================================================================================================

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

========================  =========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                        
========================  =========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
  `(Boolean, Boolean)`                          ``int_xor_impl`` `numba/cpython/numbers.py lines 451-457 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L451-L457>`_                       
  `(Integer, Integer)`                          ``int_xor_impl`` `numba/cpython/numbers.py lines 451-457 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L451-L457>`_                       
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_inplace_operator`` `numba/np/npyimpl.py lines 772-778 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L772-L778>`_  
========================  =========================================================================================================================================================================================================================

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

======================================  ========================================================================================================================================================================================================================
              Signature                                                                                                                        Definition                                                                                                       
======================================  ========================================================================================================================================================================================================================
           `(Array, Array)`               ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
            `(Array, any)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
       `(BaseTuple, BaseTuple)`                                  ``tuple_le`` `numba/cpython/tupleobj.py lines 83-86 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L83-L86>`_                         
           `(Float, Float)`                                   ``real_le_impl`` `numba/cpython/numbers.py lines 849-851 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L849-L851>`_                      
  `(IntegerLiteral, IntegerLiteral)`                          ``int_slt_impl`` `numba/cpython/numbers.py lines 316-318 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L316-L318>`_                      
      `(NPDatetime, NPDatetime)`               ``_create_datetime_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 651-673 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L651-L673>`_       
     `(NPTimedelta, NPTimedelta)`              ``_create_timedelta_ordering_impl.<locals>.impl`` `numba/np/npdatetime.py lines 400-413 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L400-L413>`_        
            `(any, Array)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
            `(bool, bool)`                                    ``int_ule_impl`` `numba/cpython/numbers.py lines 341-343 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L341-L343>`_                      
           `(int16, int16)`                                   ``int_sle_impl`` `numba/cpython/numbers.py lines 321-323 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L321-L323>`_                      
           `(int32, int32)`                                   ``int_sle_impl`` `numba/cpython/numbers.py lines 321-323 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L321-L323>`_                      
           `(int64, int64)`                                   ``int_sle_impl`` `numba/cpython/numbers.py lines 321-323 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L321-L323>`_                      
            `(int8, int8)`                                    ``int_sle_impl`` `numba/cpython/numbers.py lines 321-323 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L321-L323>`_                      
          `(uint16, uint16)`                                  ``int_ule_impl`` `numba/cpython/numbers.py lines 341-343 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L341-L343>`_                      
          `(uint32, uint32)`                                  ``int_ule_impl`` `numba/cpython/numbers.py lines 341-343 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L341-L343>`_                      
          `(uint64, uint64)`                                  ``int_ule_impl`` `numba/cpython/numbers.py lines 341-343 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L341-L343>`_                      
           `(uint8, uint8)`                                   ``int_ule_impl`` `numba/cpython/numbers.py lines 341-343 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L341-L343>`_                      
======================================  ========================================================================================================================================================================================================================

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

========================  ========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                       
========================  ========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
  `(Integer, Integer)`                          ``int_shl_impl`` `numba/cpython/numbers.py lines 412-418 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L412-L418>`_                      
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
========================  ========================================================================================================================================================================================================================

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

======================================  ========================================================================================================================================================================================================================
              Signature                                                                                                                        Definition                                                                                                       
======================================  ========================================================================================================================================================================================================================
           `(Array, Array)`               ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
            `(Array, any)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
       `(BaseTuple, BaseTuple)`                                  ``tuple_lt`` `numba/cpython/tupleobj.py lines 78-81 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L78-L81>`_                         
           `(Float, Float)`                                   ``real_lt_impl`` `numba/cpython/numbers.py lines 844-846 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L844-L846>`_                      
  `(IntegerLiteral, IntegerLiteral)`                          ``int_slt_impl`` `numba/cpython/numbers.py lines 316-318 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L316-L318>`_                      
      `(NPDatetime, NPDatetime)`               ``_create_datetime_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 651-673 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L651-L673>`_       
     `(NPTimedelta, NPTimedelta)`              ``_create_timedelta_ordering_impl.<locals>.impl`` `numba/np/npdatetime.py lines 400-413 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L400-L413>`_        
            `(any, Array)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
            `(bool, bool)`                                    ``int_ult_impl`` `numba/cpython/numbers.py lines 336-338 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L336-L338>`_                      
           `(int16, int16)`                                   ``int_slt_impl`` `numba/cpython/numbers.py lines 316-318 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L316-L318>`_                      
           `(int32, int32)`                                   ``int_slt_impl`` `numba/cpython/numbers.py lines 316-318 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L316-L318>`_                      
           `(int64, int64)`                                   ``int_slt_impl`` `numba/cpython/numbers.py lines 316-318 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L316-L318>`_                      
            `(int8, int8)`                                    ``int_slt_impl`` `numba/cpython/numbers.py lines 316-318 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L316-L318>`_                      
          `(uint16, uint16)`                                  ``int_ult_impl`` `numba/cpython/numbers.py lines 336-338 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L336-L338>`_                      
          `(uint32, uint32)`                                  ``int_ult_impl`` `numba/cpython/numbers.py lines 336-338 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L336-L338>`_                      
          `(uint64, uint64)`                                  ``int_ult_impl`` `numba/cpython/numbers.py lines 336-338 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L336-L338>`_                      
           `(uint8, uint8)`                                   ``int_ult_impl`` `numba/cpython/numbers.py lines 336-338 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L336-L338>`_                      
======================================  ========================================================================================================================================================================================================================

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

========================  ========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                       
========================  ========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
    `(Float, Float)`                           ``real_mod_impl`` `numba/cpython/numbers.py lines 794-810 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L794-L810>`_                      
  `(Integer, Integer)`                          ``int_rem_impl`` `numba/cpython/numbers.py lines 189-194 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L189-L194>`_                      
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
========================  ========================================================================================================================================================================================================================

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

============================  ========================================================================================================================================================================================================================
         Signature                                                                                                                   Definition                                                                                                       
============================  ========================================================================================================================================================================================================================
      `(Array, Array)`          ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
       `(Array, any)`           ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
    `(Complex, Complex)`                        ``complex_mul_impl`` `numba/cpython/numbers.py lines 1069-1089 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1069-L1089>`_                  
      `(Float, Float)`                             ``real_mul_impl`` `numba/cpython/numbers.py lines 626-628 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L626-L628>`_                      
   `(Float, NPTimedelta)`                        ``number_times_timedelta`` `numba/np/npdatetime.py lines 239-247 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L239-L247>`_                   
    `(Integer, Integer)`                              ``int_mul_impl`` `numba/cpython/numbers.py lines 53-59 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L53-L59>`_                        
     `(Integer, List)`                                ``list_mul`` `numba/cpython/listobj.py lines 717-740 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L717-L740>`_                        
  `(Integer, NPTimedelta)`                       ``number_times_timedelta`` `numba/np/npdatetime.py lines 239-247 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L239-L247>`_                   
     `(List, Integer)`                                ``list_mul`` `numba/cpython/listobj.py lines 717-740 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L717-L740>`_                        
   `(NPTimedelta, Float)`                        ``timedelta_times_number`` `numba/np/npdatetime.py lines 228-236 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L228-L236>`_                   
  `(NPTimedelta, Integer)`                       ``timedelta_times_number`` `numba/np/npdatetime.py lines 228-236 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L228-L236>`_                   
       `(any, Array)`           ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
============================  ========================================================================================================================================================================================================================

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

======================================  ========================================================================================================================================================================================================================
              Signature                                                                                                                        Definition                                                                                                       
======================================  ========================================================================================================================================================================================================================
           `(Array, Array)`               ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
            `(Array, any)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
       `(BaseTuple, BaseTuple)`                                  ``tuple_ne`` `numba/cpython/tupleobj.py lines 73-76 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L73-L76>`_                         
         `(Complex, Complex)`                             ``complex_ne_impl`` `numba/cpython/numbers.py lines 1155-1164 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1155-L1164>`_                   
      `(EnumMember, EnumMember)`                                 ``enum_ne`` `numba/cpython/enumimpl.py lines 34-40 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/enumimpl.py#L34-L40>`_                          
           `(Float, Float)`                                   ``real_ne_impl`` `numba/cpython/numbers.py lines 869-871 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L869-L871>`_                      
         `(Integer, Integer)`                                 ``int_ne_impl`` `numba/cpython/numbers.py lines 361-363 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L361-L363>`_                       
  `(IntegerLiteral, IntegerLiteral)`                        ``const_ne_impl`` `numba/cpython/builtins.py lines 119-127 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L119-L127>`_                     
         `(Literal, Literal)`                               ``const_ne_impl`` `numba/cpython/builtins.py lines 119-127 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L119-L127>`_                     
      `(NPDatetime, NPDatetime)`               ``_create_datetime_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 651-673 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L651-L673>`_       
     `(NPTimedelta, NPTimedelta)`             ``_create_timedelta_comparison_impl.<locals>.impl`` `numba/np/npdatetime.py lines 372-394 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L372-L394>`_       
            `(any, Array)`                ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
            `(bool, bool)`                                    ``int_ne_impl`` `numba/cpython/numbers.py lines 361-363 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L361-L363>`_                       
======================================  ========================================================================================================================================================================================================================

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

===================  ======================================================================================================================================================================================================================
     Signature                                                                                                             Definition                                                                                                      
===================  ======================================================================================================================================================================================================================
     `(Array)`         ``register_unary_operator_kernel.<locals>.lower_unary_operator`` `numba/np/npyimpl.py lines 762-763 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L762-L763>`_  
    `(Complex)`                     ``complex_negate_impl`` `numba/cpython/numbers.py lines 1126-1135 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1126-L1135>`_                
     `(Float)`                          ``real_negate_impl`` `numba/cpython/numbers.py lines 881-884 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L881-L884>`_                   
    `(Integer)`                         ``int_negate_impl`` `numba/cpython/numbers.py lines 460-466 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L460-L466>`_                    
  `(NPTimedelta)`                        ``timedelta_neg_impl`` `numba/np/npdatetime.py lines 142-145 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L142-L145>`_                    
     `(bool)`                           ``bool_negate_impl`` `numba/cpython/numbers.py lines 527-532 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L527-L532>`_                   
===================  ======================================================================================================================================================================================================================

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

===============  =======================================================================================================================================================================================
   Signature                                                                                           Definition                                                                                       
===============  =======================================================================================================================================================================================
  `(Complex)`      ``number_not_impl`` `numba/cpython/numbers.py lines 1212-1217 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1212-L1217>`_  
   `(Float)`       ``number_not_impl`` `numba/cpython/numbers.py lines 1212-1217 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1212-L1217>`_  
  `(Integer)`      ``number_not_impl`` `numba/cpython/numbers.py lines 1212-1217 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1212-L1217>`_  
   `(bool)`        ``number_not_impl`` `numba/cpython/numbers.py lines 1212-1217 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1212-L1217>`_  
===============  =======================================================================================================================================================================================

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

========================  ========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                       
========================  ========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
  `(Boolean, Boolean)`                          ``int_or_impl`` `numba/cpython/numbers.py lines 442-448 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L442-L448>`_                       
  `(Integer, Integer)`                          ``int_or_impl`` `numba/cpython/numbers.py lines 442-448 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L442-L448>`_                       
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
========================  ========================================================================================================================================================================================================================

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

===================  ======================================================================================================================================================================================================================
     Signature                                                                                                             Definition                                                                                                      
===================  ======================================================================================================================================================================================================================
     `(Array)`                             ``array_positive_impl`` `numba/np/npyimpl.py lines 793-805 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L793-L805>`_                       
     `(Array)`         ``register_unary_operator_kernel.<locals>.lower_unary_operator`` `numba/np/npyimpl.py lines 762-763 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L762-L763>`_  
    `(Complex)`                    ``complex_positive_impl`` `numba/cpython/numbers.py lines 1138-1140 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1138-L1140>`_               
     `(Float)`                         ``real_positive_impl`` `numba/cpython/numbers.py lines 887-891 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L887-L891>`_                  
    `(Integer)`                        ``int_positive_impl`` `numba/cpython/numbers.py lines 469-473 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L469-L473>`_                   
  `(NPTimedelta)`                        ``timedelta_pos_impl`` `numba/np/npdatetime.py lines 136-139 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L136-L139>`_                    
     `(bool)`                       ``bool_unary_positive_impl`` `numba/cpython/numbers.py lines 535-539 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L535-L539>`_               
===================  ======================================================================================================================================================================================================================

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

===============================  ========================================================================================================================================================================================================================
           Signature                                                                                                                    Definition                                                                                                       
===============================  ========================================================================================================================================================================================================================
       `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
        `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
     `(Complex, Complex)`                          ``complex_power_impl`` `numba/cpython/numbers.py lines 993-1035 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L993-L1035>`_                  
       `(Float, Float)`                              ``real_power_impl`` `numba/cpython/numbers.py lines 832-841 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L832-L841>`_                     
   `(Float, IntegerLiteral)`                        ``static_power_impl`` `numba/cpython/numbers.py lines 251-313 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L251-L313>`_                    
       `(Float, int16)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                     
       `(Float, int32)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                     
       `(Float, int64)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                     
        `(Float, int8)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                     
       `(Float, uint16)`                              ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                     
       `(Float, uint32)`                              ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                     
       `(Float, uint64)`                              ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                     
       `(Float, uint8)`                               ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                     
     `(Integer, Integer)`                             ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_                     
  `(Integer, IntegerLiteral)`                       ``static_power_impl`` `numba/cpython/numbers.py lines 251-313 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L251-L313>`_                    
        `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
===============================  ========================================================================================================================================================================================================================

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

========================  ========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                       
========================  ========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
  `(Integer, Integer)`                          ``int_shr_impl`` `numba/cpython/numbers.py lines 421-430 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L421-L430>`_                      
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
========================  ========================================================================================================================================================================================================================

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

===================================  ==========================================================================================================================================================================================
             Signature                                                                                                       Definition                                                                                        
===================================  ==========================================================================================================================================================================================
       `(Buffer, any, any)`                    ``setitem_array`` `numba/np/arrayobj.py lines 577-615 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L577-L615>`_           
    `(CPointer, Integer, any)`           ``setitem_cpointer`` `numba/cpython/builtins.py lines 186-190 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L186-L190>`_    
      `(List, Integer, any)`                ``setitem_list`` `numba/cpython/listobj.py lines 521-530 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L521-L530>`_       
     `(List, SliceType, any)`               ``setitem_list`` `numba/cpython/listobj.py lines 556-613 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L556-L613>`_       
  `(NumpyFlatType, Integer, any)`      ``iternext_numpy_getitem_any`` `numba/np/arrayobj.py lines 4157-4171 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L4157-L4171>`_  
===================================  ==========================================================================================================================================================================================

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

================================  ========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                       
================================  ========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
      `(Complex, Complex)`                          ``complex_sub_impl`` `numba/cpython/numbers.py lines 1053-1066 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1053-L1066>`_                  
        `(Float, Float)`                               ``real_sub_impl`` `numba/cpython/numbers.py lines 621-623 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L621-L623>`_                      
      `(Integer, Integer)`                                ``int_sub_impl`` `numba/cpython/numbers.py lines 44-50 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L44-L50>`_                        
   `(NPDatetime, NPDatetime)`                       ``datetime_minus_datetime`` `numba/np/npdatetime.py lines 631-645 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L631-L645>`_                   
  `(NPDatetime, NPTimedelta)`                       ``datetime_minus_timedelta`` `numba/np/npdatetime.py lines 617-626 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L617-L626>`_                  
  `(NPTimedelta, NPTimedelta)`                         ``timedelta_sub_impl`` `numba/np/npdatetime.py lines 197-208 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L197-L208>`_                     
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
================================  ========================================================================================================================================================================================================================

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

================================  ========================================================================================================================================================================================================================
           Signature                                                                                                                     Definition                                                                                                       
================================  ========================================================================================================================================================================================================================
        `(Array, Array)`            ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
         `(Array, any)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
      `(Complex, Complex)`                          ``complex_div_impl`` `numba/cpython/numbers.py lines 1094-1123 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1094-L1123>`_                  
        `(Float, Float)`                               ``real_div_impl`` `numba/cpython/numbers.py lines 631-635 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L631-L635>`_                      
      `(Integer, Integer)`                            ``int_truediv_impl`` `numba/cpython/numbers.py lines 176-186 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L176-L186>`_                    
     `(NPTimedelta, Float)`                          ``timedelta_over_number`` `numba/np/npdatetime.py lines 250-278 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L250-L278>`_                    
    `(NPTimedelta, Integer)`                         ``timedelta_over_number`` `numba/np/npdatetime.py lines 250-278 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L250-L278>`_                    
  `(NPTimedelta, NPTimedelta)`                      ``timedelta_over_timedelta`` `numba/np/npdatetime.py lines 281-296 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L281-L296>`_                  
         `(any, Array)`             ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
================================  ========================================================================================================================================================================================================================

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

========================  ========================================================================================================================================================================================================================
       Signature                                                                                                                 Definition                                                                                                       
========================  ========================================================================================================================================================================================================================
    `(Array, Array)`        ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
     `(Array, any)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
  `(Boolean, Boolean)`                          ``int_xor_impl`` `numba/cpython/numbers.py lines 451-457 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L451-L457>`_                      
  `(Integer, Integer)`                          ``int_xor_impl`` `numba/cpython/numbers.py lines 451-457 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L451-L457>`_                      
     `(any, Array)`         ``register_binary_operator_kernel.<locals>.lower_binary_operator`` `numba/np/npyimpl.py lines 769-770 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L769-L770>`_  
========================  ========================================================================================================================================================================================================================

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

===================  ========================================================================================================================================================================================
     Signature                                                                                              Definition                                                                                       
===================  ========================================================================================================================================================================================
    `(Complex)`        ``complex_abs_impl`` `numba/cpython/numbers.py lines 1167-1175 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1167-L1175>`_  
     `(Float)`            ``real_abs_impl`` `numba/cpython/numbers.py lines 874-878 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L874-L878>`_      
  `(NPTimedelta)`         ``timedelta_abs_impl`` `numba/np/npdatetime.py lines 148-158 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L148-L158>`_     
     `(int16)`             ``int_abs_impl`` `numba/cpython/numbers.py lines 398-404 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L398-L404>`_      
     `(int32)`             ``int_abs_impl`` `numba/cpython/numbers.py lines 398-404 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L398-L404>`_      
     `(int64)`             ``int_abs_impl`` `numba/cpython/numbers.py lines 398-404 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L398-L404>`_      
     `(int8)`              ``int_abs_impl`` `numba/cpython/numbers.py lines 398-404 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L398-L404>`_      
    `(uint16)`            ``uint_abs_impl`` `numba/cpython/numbers.py lines 407-409 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L407-L409>`_      
    `(uint32)`            ``uint_abs_impl`` `numba/cpython/numbers.py lines 407-409 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L407-L409>`_      
    `(uint64)`            ``uint_abs_impl`` `numba/cpython/numbers.py lines 407-409 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L407-L409>`_      
     `(uint8)`            ``uint_abs_impl`` `numba/cpython/numbers.py lines 407-409 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L407-L409>`_      
===================  ========================================================================================================================================================================================

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

================  =======================================================================================================================================================================================
   Signature                                                                                            Definition                                                                                       
================  =======================================================================================================================================================================================
  `(Boolean)`        ``bool_as_bool`` `numba/cpython/numbers.py lines 1219-1222 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1219-L1222>`_    
  `(Complex)`       ``complex_as_bool`` `numba/cpython/numbers.py lines 1234-1243 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1234-L1243>`_  
   `(Float)`         ``float_as_bool`` `numba/cpython/numbers.py lines 1229-1232 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1229-L1232>`_   
  `(Integer)`         ``int_as_bool`` `numba/cpython/numbers.py lines 1224-1227 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L1224-L1227>`_    
  `(Sequence)`         ``sequence_bool`` `numba/cpython/listobj.py lines 671-676 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L671-L676>`_     
   `(Sized)`           ``sized_bool`` `numba/cpython/builtins.py lines 433-439 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L433-L439>`_      
================  =======================================================================================================================================================================================

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

=============  ==================================================================================================================================================================================
  Signature                                                                                        Definition                                                                                    
=============  ==================================================================================================================================================================================
  `(*any)`       ``complex_impl`` `numba/cpython/builtins.py lines 310-335 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L310-L335>`_  
=============  ==================================================================================================================================================================================

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

====================  ==============================================================================================================================================================================
     Signature                                                                                          Definition                                                                                  
====================  ==============================================================================================================================================================================
        `()`               ``impl_dict`` `numba/typed/dictimpl.py lines 30-43 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/typed/dictimpl.py#L30-L43>`_      
  `(IterableType)`      ``dict_constructor`` `numba/typed/dictimpl.py lines 14-27 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/typed/dictimpl.py#L14-L27>`_  
====================  ==============================================================================================================================================================================

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

========================  ====================================================================================================================================================================================
       Signature                                                                                               Definition                                                                                     
========================  ====================================================================================================================================================================================
    `(Float, Float)`        ``real_divmod_impl`` `numba/cpython/numbers.py lines 768-791 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L768-L791>`_  
  `(Integer, Integer)`      ``int_divmod_impl`` `numba/cpython/numbers.py lines 159-165 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L159-L165>`_   
========================  ====================================================================================================================================================================================

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

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

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

=====================  ========================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                       
=====================  ========================================================================================================================================================================================
  `(StringLiteral)`      ``float_literal_impl`` `numba/cpython/builtins.py lines 303-307 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L303-L307>`_  
       `(any)`                ``int_impl`` `numba/cpython/builtins.py lines 294-300 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L294-L300>`_       
=====================  ========================================================================================================================================================================================

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

=============  ==============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                  
=============  ==============================================================================================================================================================================
   `(any)`       ``int_impl`` `numba/cpython/builtins.py lines 294-300 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L294-L300>`_  
=============  ==============================================================================================================================================================================

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

====================  ===============================================================================================================================================================================
     Signature                                                                                          Definition                                                                                   
====================  ===============================================================================================================================================================================
  `(IterableType)`      ``iter_impl`` `numba/cpython/builtins.py lines 391-396 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L391-L396>`_  
====================  ===============================================================================================================================================================================

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

==========================  ====================================================================================================================================================================================================
        Signature                                                                                                        Definition                                                                                             
==========================  ====================================================================================================================================================================================================
        `(Buffer)`                           ``array_len`` `numba/np/arrayobj.py lines 618-626 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L618-L626>`_                  
      `(ConstSized)`                  ``constsized_len`` `numba/cpython/builtins.py lines 425-430 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L425-L430>`_          
         `(List)`                         ``list_len`` `numba/cpython/listobj.py lines 485-488 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L485-L488>`_              
    `(NumpyFlatType)`             ``iternext_numpy_getitem_flat`` `numba/np/arrayobj.py lines 4174-4182 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L4174-L4182>`_       
         `(Set)`                         ``set_len`` `numba/cpython/setobj.py lines 1274-1277 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/setobj.py#L1274-L1277>`_              
  `(range_state_int32)`       ``make_range_impl.<locals>.range_len`` `numba/cpython/rangeobj.py lines 77-85 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L77-L85>`_  
  `(range_state_int64)`       ``make_range_impl.<locals>.range_len`` `numba/cpython/rangeobj.py lines 77-85 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L77-L85>`_  
  `(range_state_uint64)`      ``make_range_impl.<locals>.range_len`` `numba/cpython/rangeobj.py lines 77-85 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L77-L85>`_  
==========================  ====================================================================================================================================================================================================

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

====================  ====================================================================================================================================================================================
     Signature                                                                                             Definition                                                                                     
====================  ====================================================================================================================================================================================
        `()`            ``list_constructor`` `numba/cpython/listobj.py lines 475-480 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L475-L480>`_  
  `(IterableType)`      ``list_constructor`` `numba/cpython/listobj.py lines 465-473 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/listobj.py#L465-L473>`_  
====================  ====================================================================================================================================================================================

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

=================  ==================================================================================================================================================================================
    Signature                                                                                          Definition                                                                                    
=================  ==================================================================================================================================================================================
    `(*any)`          ``max_vararg`` `numba/cpython/builtins.py lines 225-227 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L225-L227>`_   
  `(BaseTuple)`      ``max_iterable`` `numba/cpython/builtins.py lines 219-223 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L219-L223>`_  
=================  ==================================================================================================================================================================================

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

=================  ==================================================================================================================================================================================
    Signature                                                                                          Definition                                                                                    
=================  ==================================================================================================================================================================================
    `(*any)`          ``min_vararg`` `numba/cpython/builtins.py lines 235-237 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L235-L237>`_   
  `(BaseTuple)`      ``min_iterable`` `numba/cpython/builtins.py lines 229-233 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L229-L233>`_  
=================  ==================================================================================================================================================================================

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

====================  ===============================================================================================================================================================================
     Signature                                                                                          Definition                                                                                   
====================  ===============================================================================================================================================================================
  `(IteratorType)`      ``next_impl`` `numba/cpython/builtins.py lines 399-409 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L399-L409>`_  
====================  ===============================================================================================================================================================================

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

========================  ========================================================================================================================================================================================
       Signature                                                                                                 Definition                                                                                       
========================  ========================================================================================================================================================================================
  `(Complex, Complex)`      ``complex_power_impl`` `numba/cpython/numbers.py lines 993-1035 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L993-L1035>`_  
    `(Float, Float)`          ``real_power_impl`` `numba/cpython/numbers.py lines 832-841 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L832-L841>`_     
    `(Float, int16)`           ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_     
    `(Float, int32)`           ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_     
    `(Float, int64)`           ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_     
    `(Float, int8)`            ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_     
   `(Float, uint16)`           ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_     
   `(Float, uint32)`           ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_     
   `(Float, uint64)`           ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_     
    `(Float, uint8)`           ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_     
  `(Integer, Integer)`         ``int_power_impl`` `numba/cpython/numbers.py lines 206-248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/numbers.py#L206-L248>`_     
========================  ========================================================================================================================================================================================

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

=============  ======================================================================================================================================================================================
  Signature                                                                                          Definition                                                                                      
=============  ======================================================================================================================================================================================
  `(*any)`       ``print_varargs_impl`` `numba/cpython/printimpl.py lines 64-82 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/printimpl.py#L64-L82>`_  
=============  ======================================================================================================================================================================================

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

==============================  ======================================================================================================================================================================================================
          Signature                                                                                                           Definition                                                                                              
==============================  ======================================================================================================================================================================================================
          `(int32)`               ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 26-41 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L26-L41>`_  
       `(int32, int32)`           ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 43-58 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L43-L58>`_  
   `(int32, int32, int32)`        ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 60-75 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L60-L75>`_  
          `(int64)`               ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 26-41 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L26-L41>`_  
       `(int64, int64)`           ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 43-58 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L43-L58>`_  
   `(int64, int64, int64)`        ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 60-75 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L60-L75>`_  
          `(uint64)`              ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 26-41 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L26-L41>`_  
      `(uint64, uint64)`          ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 43-58 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L43-L58>`_  
  `(uint64, uint64, uint64)`      ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 60-75 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L60-L75>`_  
==============================  ======================================================================================================================================================================================================

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

======================  =======================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                       
======================  =======================================================================================================================================================================================
      `(Float)`           ``round_impl_unary`` `numba/cpython/builtins.py lines 244-254 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L244-L254>`_   
  `(Float, Integer)`      ``round_impl_binary`` `numba/cpython/builtins.py lines 256-288 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L256-L288>`_  
======================  =======================================================================================================================================================================================

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

====================  ===========================================================================================================================================================================================
     Signature                                                                                                Definition                                                                                         
====================  ===========================================================================================================================================================================================
        `()`            ``set_empty_constructor`` `numba/cpython/setobj.py lines 1244-1248 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/setobj.py#L1244-L1248>`_  
  `(IterableType)`         ``set_constructor`` `numba/cpython/setobj.py lines 1250-1268 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/setobj.py#L1250-L1268>`_     
====================  ===========================================================================================================================================================================================

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

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

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

=================  =======================================================================================================================================================================================
    Signature                                                                                            Definition                                                                                       
=================  =======================================================================================================================================================================================
      `()`           ``lower_empty_tuple`` `numba/cpython/builtins.py lines 441-445 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L441-L445>`_  
  `(BaseTuple)`         ``lower_tuple`` `numba/cpython/builtins.py lines 447-450 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L447-L450>`_     
=================  =======================================================================================================================================================================================

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

=============  ===============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                   
=============  ===============================================================================================================================================================================
   `(any)`       ``type_impl`` `numba/cpython/builtins.py lines 383-388 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L383-L388>`_  
=============  ===============================================================================================================================================================================

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

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

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

===============  =================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                    
===============  =================================================================================================================================================================================
  `(Complex)`      ``acos_impl`` `numba/cpython/cmathimpl.py lines 387-411 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L387-L411>`_  
===============  =================================================================================================================================================================================

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

===============  =================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                    
===============  =================================================================================================================================================================================
  `(Complex)`      ``asin_impl`` `numba/cpython/cmathimpl.py lines 466-474 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L466-L474>`_  
===============  =================================================================================================================================================================================

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

===============  ==================================================================================================================================================================================
   Signature                                                                                         Definition                                                                                    
===============  ==================================================================================================================================================================================
  `(Complex)`      ``asinh_impl`` `numba/cpython/cmathimpl.py lines 442-464 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L442-L464>`_  
===============  ==================================================================================================================================================================================

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

===============  =================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                    
===============  =================================================================================================================================================================================
  `(Complex)`      ``atan_impl`` `numba/cpython/cmathimpl.py lines 476-488 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L476-L488>`_  
===============  =================================================================================================================================================================================

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

===============  ==================================================================================================================================================================================
   Signature                                                                                         Definition                                                                                    
===============  ==================================================================================================================================================================================
  `(Complex)`      ``atanh_impl`` `numba/cpython/cmathimpl.py lines 490-542 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L490-L542>`_  
===============  ==================================================================================================================================================================================

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

===============  ================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                   
===============  ================================================================================================================================================================================
  `(Complex)`      ``cos_impl`` `numba/cpython/cmathimpl.py lines 270-277 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L270-L277>`_  
===============  ================================================================================================================================================================================

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

===============  ============================================================================================================================================================================================================
   Signature                                                                                                      Definition                                                                                                 
===============  ============================================================================================================================================================================================================
  `(Complex)`      ``intrinsic_complex_unary.<locals>.wrapper`` `numba/cpython/cmathimpl.py lines 85-99 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L85-L99>`_  
===============  ============================================================================================================================================================================================================

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

===============  =======================================================================================================================================================================================
   Signature                                                                                           Definition                                                                                       
===============  =======================================================================================================================================================================================
  `(Complex)`      ``isfinite_float_impl`` `numba/cpython/cmathimpl.py lines 48-54 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L48-L54>`_  
===============  =======================================================================================================================================================================================

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

===============  ====================================================================================================================================================================================
   Signature                                                                                          Definition                                                                                     
===============  ====================================================================================================================================================================================
  `(Complex)`      ``isinf_float_impl`` `numba/cpython/cmathimpl.py lines 39-45 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L39-L45>`_  
===============  ====================================================================================================================================================================================

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

===============  ====================================================================================================================================================================================
   Signature                                                                                          Definition                                                                                     
===============  ====================================================================================================================================================================================
  `(Complex)`      ``isnan_float_impl`` `numba/cpython/cmathimpl.py lines 31-37 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L31-L37>`_  
===============  ====================================================================================================================================================================================

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

========================  ============================================================================================================================================================================================================
       Signature                                                                                                           Definition                                                                                                 
========================  ============================================================================================================================================================================================================
      `(Complex)`           ``intrinsic_complex_unary.<locals>.wrapper`` `numba/cpython/cmathimpl.py lines 85-99 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L85-L99>`_  
  `(Complex, Complex)`                 ``log_base_impl`` `numba/cpython/cmathimpl.py lines 157-166 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L157-L166>`_              
========================  ============================================================================================================================================================================================================

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

===============  ================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                   
===============  ================================================================================================================================================================================
  `(Complex)`      ``sin_impl`` `numba/cpython/cmathimpl.py lines 309-317 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L309-L317>`_  
===============  ================================================================================================================================================================================

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

===============  =================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                    
===============  =================================================================================================================================================================================
  `(Complex)`      ``sqrt_impl`` `numba/cpython/cmathimpl.py lines 209-267 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L209-L267>`_  
===============  =================================================================================================================================================================================

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

===============  ================================================================================================================================================================================
   Signature                                                                                        Definition                                                                                   
===============  ================================================================================================================================================================================
  `(Complex)`      ``tan_impl`` `numba/cpython/cmathimpl.py lines 346-354 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/cmathimpl.py#L346-L354>`_  
===============  ================================================================================================================================================================================

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

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

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

======================  ======================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                      
======================  ======================================================================================================================================================================================
   `(Float, Float)`       ``atan2_float_impl`` `numba/cpython/mathimpl.py lines 312-325 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L312-L325>`_  
   `(int64, int64)`        ``atan2_s64_impl`` `numba/cpython/mathimpl.py lines 296-302 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L296-L302>`_   
  `(uint64, uint64)`       ``atan2_u64_impl`` `numba/cpython/mathimpl.py lines 304-310 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L304-L310>`_   
======================  ======================================================================================================================================================================================

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

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

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

====================  =========================================================================================================================================================================================
     Signature                                                                                               Definition                                                                                        
====================  =========================================================================================================================================================================================
  `(Float, Float)`      ``copysign_float_impl`` `numba/cpython/mathimpl.py lines 249-256 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L249-L256>`_  
====================  =========================================================================================================================================================================================

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

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`              ``unary_math_intr.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 131-134 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

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

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`                       ``degrees_float_impl`` `numba/cpython/mathimpl.py lines 393-398 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L393-L398>`_                  
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.exp2``
-------------

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`              ``unary_math_intr.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 131-134 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

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

=============  ================================================================================================================================================================================
  Signature                                                                                       Definition                                                                                   
=============  ================================================================================================================================================================================
  `(Float)`      ``frexp_impl`` `numba/cpython/mathimpl.py lines 262-276 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L262-L276>`_  
=============  ================================================================================================================================================================================

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

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

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

========================  ==============================================================================================================================================================================
       Signature                                                                                            Definition                                                                                  
========================  ==============================================================================================================================================================================
  `(Integer, Integer)`      ``gcd_impl`` `numba/cpython/mathimpl.py lines 441-468 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L441-L468>`_  
========================  ==============================================================================================================================================================================

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

======================  ======================================================================================================================================================================================
      Signature                                                                                               Definition                                                                                      
======================  ======================================================================================================================================================================================
   `(Float, Float)`       ``hypot_float_impl`` `numba/cpython/mathimpl.py lines 351-377 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L351-L377>`_  
   `(int64, int64)`        ``hypot_s64_impl`` `numba/cpython/mathimpl.py lines 331-338 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L331-L338>`_   
  `(uint64, uint64)`       ``hypot_u64_impl`` `numba/cpython/mathimpl.py lines 341-348 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L341-L348>`_   
======================  ======================================================================================================================================================================================

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

===============  =========================================================================================================================================================================================
   Signature                                                                                            Definition                                                                                        
===============  =========================================================================================================================================================================================
   `(Float)`       ``isfinite_float_impl`` `numba/cpython/mathimpl.py lines 236-240 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L236-L240>`_  
  `(Integer)`       ``isfinite_int_impl`` `numba/cpython/mathimpl.py lines 243-246 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L243-L246>`_   
===============  =========================================================================================================================================================================================

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

===============  ======================================================================================================================================================================================
   Signature                                                                                           Definition                                                                                      
===============  ======================================================================================================================================================================================
   `(Float)`       ``isinf_float_impl`` `numba/cpython/mathimpl.py lines 224-228 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L224-L228>`_  
  `(Integer)`       ``isinf_int_impl`` `numba/cpython/mathimpl.py lines 230-233 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L230-L233>`_   
===============  ======================================================================================================================================================================================

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

===============  ======================================================================================================================================================================================
   Signature                                                                                           Definition                                                                                      
===============  ======================================================================================================================================================================================
   `(Float)`       ``isnan_float_impl`` `numba/cpython/mathimpl.py lines 212-216 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L212-L216>`_  
  `(Integer)`       ``isnan_int_impl`` `numba/cpython/mathimpl.py lines 218-221 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L218-L221>`_   
===============  ======================================================================================================================================================================================

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

====================  ================================================================================================================================================================================
     Signature                                                                                           Definition                                                                                   
====================  ================================================================================================================================================================================
  `(Float, int32)`      ``ldexp_impl`` `numba/cpython/mathimpl.py lines 279-290 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L279-L290>`_  
====================  ================================================================================================================================================================================

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

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

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

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`              ``unary_math_intr.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 131-134 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L131-L134>`_          
   `(Float)`             ``unary_math_extern.<locals>.float_impl`` `numba/cpython/mathimpl.py lines 149-165 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L113-L119>`_  
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

``math.nextafter``
------------------

====================  ====================================================================================================================================================================================
     Signature                                                                                             Definition                                                                                     
====================  ====================================================================================================================================================================================
  `(Float, Float)`      ``nextafter_impl`` `numba/cpython/mathimpl.py lines 412-424 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L412-L424>`_  
====================  ====================================================================================================================================================================================

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

======================  ==============================================================================================================================================================================
      Signature                                                                                           Definition                                                                                  
======================  ==============================================================================================================================================================================
   `(Float, Float)`       ``pow_impl`` `numba/cpython/mathimpl.py lines 404-408 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L404-L408>`_  
  `(Float, Integer)`      ``pow_impl`` `numba/cpython/mathimpl.py lines 404-408 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L404-L408>`_  
======================  ==============================================================================================================================================================================

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

===============  ========================================================================================================================================================================================================================
   Signature                                                                                                            Definition                                                                                                       
===============  ========================================================================================================================================================================================================================
   `(Float)`                       ``radians_float_impl`` `numba/cpython/mathimpl.py lines 382-387 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L382-L387>`_                  
  `(Integer)`      ``_unary_int_input_wrapper_impl.<locals>.implementer`` `numba/cpython/mathimpl.py lines 113-119 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/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/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/mathimpl.py#L113-L119>`_  
===============  ========================================================================================================================================================================================================================

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

=============  ========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                       
=============  ========================================================================================================================================================================================
  `(*any)`       ``redirect_type_ctor`` `numba/cpython/builtins.py lines 671-700 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L671-L700>`_  
=============  ========================================================================================================================================================================================

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

=============  ========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                       
=============  ========================================================================================================================================================================================
  `(*any)`       ``namedtuple_constructor`` `numba/cpython/tupleobj.py lines 15-27 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/tupleobj.py#L15-L27>`_  
=============  ========================================================================================================================================================================================

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

=============  ========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                       
=============  ========================================================================================================================================================================================
   `(any)`       ``number_constructor`` `numba/cpython/builtins.py lines 338-354 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L338-L354>`_  
=============  ========================================================================================================================================================================================

``numba.core.types.misc.ClassType``
-----------------------------------

=============  ===================================================================================================================================================================================================
  Signature                                                                                                Definition                                                                                             
=============  ===================================================================================================================================================================================================
  `(*any)`       ``ctor_impl`` `numba/experimental/jitclass/base.py lines 556-598 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/experimental/jitclass/base.py#L556-L598>`_  
=============  ===================================================================================================================================================================================================

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

====================  ======================================================================================================================================================================================
     Signature                                                                                              Definition                                                                                      
====================  ======================================================================================================================================================================================
  `(int64, Type)`       ``impl_index_value`` `numba/cpython/builtins.py lines 557-565 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L557-L565>`_  
  `(uint64, Type)`      ``impl_index_value`` `numba/cpython/builtins.py lines 557-565 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L557-L565>`_  
====================  ======================================================================================================================================================================================

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

===================  ==============================================================================================================================================================================================
     Signature                                                                                                 Definition                                                                                          
===================  ==============================================================================================================================================================================================
     `(DType)`         ``lower_get_type_max_value`` `numba/cpython/builtins.py lines 525-550 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L525-L550>`_  
  `(NumberClass)`      ``lower_get_type_max_value`` `numba/cpython/builtins.py lines 525-550 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L525-L550>`_  
===================  ==============================================================================================================================================================================================

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

===================  ==============================================================================================================================================================================================
     Signature                                                                                                 Definition                                                                                          
===================  ==============================================================================================================================================================================================
     `(DType)`         ``lower_get_type_min_value`` `numba/cpython/builtins.py lines 498-523 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L498-L523>`_  
  `(NumberClass)`      ``lower_get_type_min_value`` `numba/cpython/builtins.py lines 498-523 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/builtins.py#L498-L523>`_  
===================  ==============================================================================================================================================================================================

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

===================================================  ========================================================================================================================================================================================
                     Signature                                                                                                              Definition                                                                                       
===================================================  ========================================================================================================================================================================================
  `(*<class 'numba.core.types.scalars.Integer'>)`         ``make_array_ndindex`` `numba/np/arrayobj.py lines 4219-4231 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L4219-L4231>`_     
                   `(BaseTuple)`                       ``make_array_ndindex_tuple`` `numba/np/arrayobj.py lines 4234-4254 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L4234-L4254>`_  
===================================================  ========================================================================================================================================================================================

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

==============================  ======================================================================================================================================================================================================
          Signature                                                                                                           Definition                                                                                              
==============================  ======================================================================================================================================================================================================
          `(int32)`               ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 26-41 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L26-L41>`_  
       `(int32, int32)`           ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 43-58 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L43-L58>`_  
   `(int32, int32, int32)`        ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 60-75 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L60-L75>`_  
          `(int64)`               ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 26-41 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L26-L41>`_  
       `(int64, int64)`           ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 43-58 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L43-L58>`_  
   `(int64, int64, int64)`        ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 60-75 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L60-L75>`_  
          `(uint64)`              ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 26-41 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L26-L41>`_  
      `(uint64, uint64)`          ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 43-58 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L43-L58>`_  
  `(uint64, uint64, uint64)`      ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 60-75 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L60-L75>`_  
==============================  ======================================================================================================================================================================================================

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

===================================  ====================================================================================================================================================================================
             Signature                                                                                                    Definition                                                                                     
===================================  ====================================================================================================================================================================================
  `(Array, BaseTuple, BaseTuple)`      ``impl_shape_unchecked`` `numba/np/arrayobj.py lines 6851-6870 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L6851-L6870>`_  
===================================  ====================================================================================================================================================================================

``numba.np.npdatetime_helpers.datetime_maximum``
------------------------------------------------

================================  =================================================================================================================================================================================================================
           Signature                                                                                                                 Definition                                                                                                    
================================  =================================================================================================================================================================================================================
   `(NPDatetime, NPDatetime)`       ``_gen_datetime_max_impl.<locals>.datetime_max_impl`` `numba/np/npdatetime.py lines 698-712 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L698-L712>`_  
  `(NPTimedelta, NPTimedelta)`      ``_gen_datetime_max_impl.<locals>.datetime_max_impl`` `numba/np/npdatetime.py lines 698-712 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L698-L712>`_  
================================  =================================================================================================================================================================================================================

``numba.np.npdatetime_helpers.datetime_minimum``
------------------------------------------------

================================  =================================================================================================================================================================================================================
           Signature                                                                                                                 Definition                                                                                                    
================================  =================================================================================================================================================================================================================
   `(NPDatetime, NPDatetime)`       ``_gen_datetime_min_impl.<locals>.datetime_min_impl`` `numba/np/npdatetime.py lines 719-733 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L719-L733>`_  
  `(NPTimedelta, NPTimedelta)`      ``_gen_datetime_min_impl.<locals>.datetime_min_impl`` `numba/np/npdatetime.py lines 719-733 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L719-L733>`_  
================================  =================================================================================================================================================================================================================

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

==============================  ======================================================================================================================================================================================================
          Signature                                                                                                           Definition                                                                                              
==============================  ======================================================================================================================================================================================================
          `(int32)`               ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 26-41 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L26-L41>`_  
       `(int32, int32)`           ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 43-58 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L43-L58>`_  
   `(int32, int32, int32)`        ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 60-75 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L60-L75>`_  
          `(int64)`               ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 26-41 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L26-L41>`_  
       `(int64, int64)`           ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 43-58 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L43-L58>`_  
   `(int64, int64, int64)`        ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 60-75 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L60-L75>`_  
          `(uint64)`              ``make_range_impl.<locals>.range1_impl`` `numba/cpython/rangeobj.py lines 26-41 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L26-L41>`_  
      `(uint64, uint64)`          ``make_range_impl.<locals>.range2_impl`` `numba/cpython/rangeobj.py lines 43-58 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L43-L58>`_  
  `(uint64, uint64, uint64)`      ``make_range_impl.<locals>.range3_impl`` `numba/cpython/rangeobj.py lines 60-75 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/cpython/rangeobj.py#L60-L75>`_  
==============================  ======================================================================================================================================================================================================

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

=============  =========================================================================================================================================================================================
  Signature                                                                                           Definition                                                                                        
=============  =========================================================================================================================================================================================
    `()`         ``stencil_dummy_lower`` `numba/stencils/stencil.py lines 833-836 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/stencils/stencil.py#L833-L836>`_  
=============  =========================================================================================================================================================================================

``numpy.absolute``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.add``
-------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.arccos``
----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.arccosh``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.arcsin``
----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.arcsinh``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.arctan``
----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.arctan2``
-----------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.arctanh``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

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

============================  =============================================================================================================================================================================
         Signature                                                                                             Definition                                                                                  
============================  =============================================================================================================================================================================
  `(Array, StringLiteral)`      ``array_argsort`` `numba/np/arrayobj.py lines 6768-6783 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L6768-L6783>`_  
============================  =============================================================================================================================================================================

``numpy.bitwise_and``
---------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.bitwise_or``
--------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.bitwise_xor``
---------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.cbrt``
--------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.ceil``
--------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.conjugate``
-------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.copysign``
------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.cos``
-------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.cosh``
--------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.deg2rad``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.degrees``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.divide``
----------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.divmod``
----------------

==============================  =================================================================================================================================================================================================
          Signature                                                                                                        Definition                                                                                            
==============================  =================================================================================================================================================================================================
         `(any, any)`             ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
     `(any, any, Array)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==============================  =================================================================================================================================================================================================

``numpy.equal``
---------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.exp``
-------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.exp2``
--------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.expm1``
---------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.fabs``
--------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.float_power``
---------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.floor``
---------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.floor_divide``
----------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.fmax``
--------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.fmin``
--------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.fmod``
--------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.gcd``
-------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.greater``
-----------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.greater_equal``
-----------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.hypot``
---------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.invert``
----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.isfinite``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.isinf``
---------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.isnan``
---------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.isnat``
---------------

===================  =================================================================================================================================================================================================
     Signature                                                                                                  Definition                                                                                            
===================  =================================================================================================================================================================================================
  `(NPDatetime)`                ``_np_isnat_impl`` `numba/np/npdatetime.py lines 795-798 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L795-L798>`_            
  `(NPTimedelta)`               ``_np_isnat_impl`` `numba/np/npdatetime.py lines 795-798 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npdatetime.py#L795-L798>`_            
      `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`       ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
===================  =================================================================================================================================================================================================

``numpy.lcm``
-------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.ldexp``
---------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.left_shift``
--------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.less``
--------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.less_equal``
--------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.log``
-------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.log10``
---------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.log1p``
---------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.log2``
--------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.logaddexp``
-------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.logaddexp2``
--------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.logical_and``
---------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.logical_not``
---------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.logical_or``
--------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.logical_xor``
---------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.maximum``
-----------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.minimum``
-----------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.multiply``
------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

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

=============  ======================================================================================================================================================================================
  Signature                                                                                          Definition                                                                                      
=============  ======================================================================================================================================================================================
  `(Array)`      ``make_array_ndenumerate`` `numba/np/arrayobj.py lines 4185-4200 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L4185-L4200>`_  
=============  ======================================================================================================================================================================================

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

===================================================  ========================================================================================================================================================================================
                     Signature                                                                                                              Definition                                                                                       
===================================================  ========================================================================================================================================================================================
  `(*<class 'numba.core.types.scalars.Integer'>)`         ``make_array_ndindex`` `numba/np/arrayobj.py lines 4219-4231 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L4219-L4231>`_     
                   `(BaseTuple)`                       ``make_array_ndindex_tuple`` `numba/np/arrayobj.py lines 4234-4254 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L4234-L4254>`_  
===================================================  ========================================================================================================================================================================================

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

=============  =================================================================================================================================================================================
  Signature                                                                                       Definition                                                                                    
=============  =================================================================================================================================================================================
   `(any)`       ``make_array_nditer`` `numba/np/arrayobj.py lines 4269-4286 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L4269-L4286>`_  
=============  =================================================================================================================================================================================

``numpy.negative``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.nextafter``
-------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

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

=============  ===============================================================================================================================================================================
  Signature                                                                                      Definition                                                                                   
=============  ===============================================================================================================================================================================
  `(Array)`      ``array_nonzero`` `numba/np/arraymath.py lines 3299-3354 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arraymath.py#L3299-L3354>`_  
=============  ===============================================================================================================================================================================

``numpy.not_equal``
-------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.polynomial.polynomial.Polynomial``
------------------------------------------

===========================  ==============================================================================================================================================================================================================
         Signature                                                                                                             Definition                                                                                                  
===========================  ==============================================================================================================================================================================================================
         `(Array)`              ``impl_polynomial1`` `numba/np/polynomial/polynomial_core.py lines 73-94 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/polynomial/polynomial_core.py#L73-L94>`_   
  `(Array, Array, Array)`      ``impl_polynomial3`` `numba/np/polynomial/polynomial_core.py lines 97-148 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/polynomial/polynomial_core.py#L97-L148>`_  
===========================  ==============================================================================================================================================================================================================

``numpy.positive``
------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.power``
---------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.rad2deg``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.radians``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

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

=============  ========================================================================================================================================================================
  Signature                                                                                   Definition                                                                               
=============  ========================================================================================================================================================================
  `(Array)`      ``np_ravel`` `numba/np/arrayobj.py lines 2376-2381 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/arrayobj.py#L2376-L2381>`_  
=============  ========================================================================================================================================================================

``numpy.reciprocal``
--------------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.remainder``
-------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.right_shift``
---------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

``numpy.rint``
--------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.sign``
--------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.signbit``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.sin``
-------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.sinh``
--------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.spacing``
-----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.sqrt``
--------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.square``
----------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.subtract``
------------------

=======================  =================================================================================================================================================================================================
       Signature                                                                                                    Definition                                                                                            
=======================  =================================================================================================================================================================================================
     `(any, any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
=======================  =================================================================================================================================================================================================

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

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

``numpy.tan``
-------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.tanh``
--------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================

``numpy.trunc``
---------------

==================  =================================================================================================================================================================================================
    Signature                                                                                                  Definition                                                                                            
==================  =================================================================================================================================================================================================
     `(any)`          ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
  `(any, Array)`      ``register_ufunc_kernel.<locals>.do_ufunc`` `numba/np/npyimpl.py lines 745-746 <https://github.com/numba/numba/blob/fd67a63b98026ebba9a7faef4ecf4b8ea5551ea8/numba/np/npyimpl.py#L745-L746>`_  
==================  =================================================================================================================================================================================================


