Skip to content

iter_ module

Generic Numba-compiled functions for iterative use.


iter_above_nb function

iter_above_nb(
    arr1,
    arr2,
    i,
    col
)

Check whether arr1 is above arr2 at specific row and column.


iter_below_nb function

iter_below_nb(
    arr1,
    arr2,
    i,
    col
)

Check whether arr1 is below arr2 at specific row and column.


iter_crossed_above_nb function

iter_crossed_above_nb(
    arr1,
    arr2,
    i,
    col
)

Check whether arr1 crossed above arr2 at specific row and column.


iter_crossed_below_nb function

iter_crossed_below_nb(
    arr1,
    arr2,
    i,
    col
)

Check whether arr1 crossed below arr2 at specific row and column.