MCPcopy
hub / github.com/pandas-dev/pandas / _get_empty_indexer

Function _get_empty_indexer

pandas/core/reshape/merge.py:2687–2692  ·  view source on GitHub ↗

Return empty join indexers.

()

Source from the content-addressed store, hash-verified

2685
2686
2687def _get_empty_indexer() -> tuple[npt.NDArray[np.intp], npt.NDArray[np.intp]]:
2688 """Return empty join indexers."""
2689 return (
2690 np.array([], dtype=np.intp),
2691 np.array([], dtype=np.intp),
2692 )
2693
2694
2695def _get_no_sort_one_missing_indexer(

Callers 1

get_join_indexersFunction · 0.85

Calls 1

arrayMethod · 0.45

Tested by

no test coverage detected