MCPcopy Create free account
hub / github.com/pydata/numexpr / ARG

Function ARG

code_generators/interp_generator.py:160–161  ·  view source on GitHub ↗
(num: int, index:str='J')

Source from the content-addressed store, hash-verified

158# return '({0} *)dest + J*memsteps[store_in]'.format( DCHAR_TO_CTYPE[dchar] )
159
160def ARG(num: int, index:str='J') -> str:
161 return 'x{0}[{1}]'.format(num, index)
162
163def ARG_STRIDE(num: int, index: str='J') -> str:
164 return 'x{0}[{1}*sb{0}]'.format(num, index)

Callers 1

VEC_LOOPFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected