Commit 2024-04-16 22:37 8f9698de
View on Github →feat(Order): limit elements in well-ordered types (#11584) This PR introduces two main definitions:
wellOrderSucc a: the successor of an elementain a well-ordered type- the typeclass
IsWellOrderLimitElement awhich asserts that an elementa(in a well-ordered type) is neither a successor nor the smallest element, i.e.ais a limit element Then, the lemmaeq_bot_or_eq_succ_or_isWellOrderLimitElementshows that an element in a well-ordered type is either⊥, a successor, or a limit element.