Source code for baloo.functions.raw

import numpy as np

from .utils import raw


[docs]@raw def sort(array, **kwargs): return np.sort(array, **kwargs)