Module docstring
{"# Lexicographic ordering of lists.
The lexicographic order on List α is defined by L < M iff
* [] < (a :: L) for any a and L,
* (a :: L) < (b :: M) where a < b, or
* (a :: L) < (a :: M) where L < M.
See also
Related files are:
* Mathlib.Data.Finset.Colex: Colexicographic order on finite sets.
* Mathlib.Data.PSigma.Order: Lexicographic order on Σ' i, α i.
* Mathlib.Data.Pi.Lex: Lexicographic order on Πₗ i, α i.
* Mathlib.Data.Sigma.Order: Lexicographic order on Σ i, α i.
* Mathlib.Data.Prod.Lex: Lexicographic order on α × β.
","### lexicographic ordering "}