Module docstring
{"# Antilipschitz functions
We say that a map f : α → β between two (extended) metric spaces is
AntilipschitzWith K, K ≥ 0, if for all x, y we have edist x y ≤ K * edist (f x) (f y).
For a metric space, the latter inequality is equivalent to dist x y ≤ K * dist (f x) (f y).
Implementation notes
The parameter K has type ℝ≥0. This way we avoid conjunction in the definition and have
coercions both to ℝ and ℝ≥0∞. We do not require 0 < K in the definition, mostly because
we do not have a posreal type.
"}