type DistanceFunction<T>
Returns The distance between its arguments, in a [0
; Number.POSITIVE_INFINITY
] range
Companion namespace: DistanceFunction
Definition
export type DistanceFunction<T> = (one: T, another: T) =>
Distance
;