pub fn nearest_neighbors<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>>(
    points: O0,
    centers: O1,
    k: O2,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for NearestNeighbors::new().build(points, centers, k, scope).