[][src]Trait aljabar::RealMetricSpace

pub trait RealMetricSpace: MetricSpace where
    Self::Metric: Real
{ fn distance(self, other: Self) -> Self::Metric { ... } }

A metric spaced where the metric is a real number.

Provided methods

fn distance(self, other: Self) -> Self::Metric

Returns the distance between the two values.

Loading content...

Implementors

impl<T> RealMetricSpace for T where
    T: MetricSpace,
    <T as MetricSpace>::Metric: Real
[src]

Loading content...