1
2
3
4
5
6
7
8
9
| """
| core.array_algos is for algorithms that operate on ndarray and ExtensionArray.
| These should:
|
| - Assume that any Index, Series, or DataFrame objects have already been unwrapped.
| - Assume that any list arguments have already been cast to ndarray/EA.
| - Not depend on Index, Series, or DataFrame, nor import any of these.
| - May dispatch to ExtensionArray methods, but should not import from core.arrays.
| """
|
|