English
For any l, to_ofList asserts that flattening and re-wrapping yields the original nested list: toList(ofList l) = l.
Русский
Для любого l выполняется свойство, что преобразование в плоский список и обратно восстанавливает исходный вложенный список: toList(ofList l) = l.
LaTeX
$$$\\operatorname{toList}(\\operatorname{ofList}(l)) = l$$$
Lean4
theorem to_ofList (l : List (Lists α)) : toList (ofList l) = l := by simp [ofList, of']