Does it make sense to move [`unit_irrelevance`](https://github.com/math-comp/finmap/blob/92a959e9e91ca356b937923bc823c7f7bb9029b5/order.v#L290) elsewhere in Coq's part of ssreflect or mathcomp? E.g. to `ssrfun`, near [`unitE` lemma](https://github.com/coq/coq/blob/a9e0f0ee9e4936d700d39faaa20568c0c561b8fa/plugins/ssr/ssrfun.v#L280), which in turn could be used to prove the fact: ```coq Fact unit_irrelevance (x y : unit) : x = y. Proof. by rewrite !unitE. Qed. ```