Module docstring
{"# Basic properties of mergeSort.
sorted_mergeSort:mergeSortproduces a sorted list.mergeSort_perm:mergeSortis a permutation of the input list.mergeSort_of_sorted:mergeSortdoes not change a sorted list.mergeSort_cons: provesmergeSort le (x :: xs) = l₁ ++ x :: l₂for somel₁, l₂so thatmergeSort le xs = l₁ ++ l₂, and noa ∈ l₁satisfiesle a x.sublist_mergeSort: ifcis a sorted sublist ofl, thencis still a sublist ofmergeSort le l.
","### splitInTwo ","### zipIdxLE ","### merge ","### mergeSort "}