Module docstring
{"## Pseudo-metric spaces
This file defines pseudo-metric spaces: these differ from metric spaces by not imposing the
condition dist x y = 0 → x = y.
Many definitions and theorems expected on (pseudo-)metric spaces are already introduced on uniform
spaces and topological spaces. For example: open and closed sets, compactness, completeness,
continuity and uniform continuity.
Main definitions
Dist α: Endows a spaceαwith a functiondist a b.PseudoMetricSpace α: A space endowed with a distance function, which can be zero even if the two elements are non-equal.Metric.ball x ε: The set of all pointsywithdist y x < ε.Metric.Bounded s: Whether a subset of aPseudoMetricSpaceis bounded.MetricSpace α: APseudoMetricSpacewith the guaranteedist x y = 0 → x = y.
Additional useful definitions:
nndist a b:distas a function to the non-negative reals.Metric.closedBall x ε: The set of all pointsywithdist y x ≤ ε.Metric.sphere x ε: The set of all pointsywithdist y x = ε.
TODO (anyone): Add \"Main results\" section.
Tags
pseudo_metric, dist "}