Module docstring
{"# Convex hull
This file defines the convex hull of a set s in a module. convexHull π s is the smallest convex
set containing s. In order theory speak, this is a closure operator.
Implementation notes
convexHull is defined as a closure operator. This gives access to the ClosureOperator API
while the impact on writing code is minimal as convexHull π s is automatically elaborated as
(convexHull π) s.
"}