<div dir="ltr">I'm having great luck using with numba, but there are two problems I find difficult to solve with it.<div><br></div><div>Often I want to algorithms that performs a lookup of a list/array of numbers. And this operation often comes in two flavors:</div><div>(1)  <index>  => <int array>             # datastructure.get(0) => array<br></div><div>(2)  <any int key>  => <int array>    # datastructure.get(999999999999) => array</div><div><br></div><div><div>In numba, how to people deal with indexed lookup where the range of the data structure is a memory managed object (array/list) (1)?</div><br class="gmail-Apple-interchange-newline"></div><div>In numba, how to people deal with problems needing hashed lookups (2)?</div><div><br></div><div>Are there extension libraries / ways of calling out to C/C++ libraries that can easily help. (I know Cython is a route, but I am asking about numba specifically).</div><div><br></div><div>Thanks, </div><div>- Stuart</div><div><br></div></div>