import type { NumberArray } from 'cheminfo-types'; /** * This function performs a circular shift to an array. * Positive values of shifts will shift to the right and negative values will do to the left. * @example xRotate([1,2,3,4],1) -> [4,1,2,3] * @example xRotate([1,2,3,4],-1) -> [2,3,4,1] * @param array - array * @param shift - shift * @returns - rotated array */ export declare function xRotate(array: NumberArray, shift: number): Float64Array; //# sourceMappingURL=xRotate.d.ts.map