//! Scalar dot-product similarity.
/// Compute the inner product `sum(a[i] * b[i])`.
///
/// The caller MUST have validated that `a.len() == b.len() != 0`. The
/// result is the raw dot product — it is *not* converted to a distance,
/// and it carries the sign of the underlying inner product.
pub