/** * Computes the chebyshev distance (L) between `a` and `b`. * * @category Metrics * @param {number[] | Float64Array} a * @param {number[] | Float64Array} b * @returns {number} The chebyshev distance between `a` and `b`. */ export function chebyshev(a: number[] | Float64Array, b: number[] | Float64Array): number; //# sourceMappingURL=chebyshev.d.ts.map