You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore(Order): Make more arguments explicit (#11033)
Those lemmas have historically been very annoying to use in `rw` since all their arguments were implicit. One too many people complained about it on Zulip, so I'm changing them.
Downstream code broken by this change can fix it by adding appropriately many `_`s.
Also marks `CauSeq.ext` `@[ext]`.
## `Order.BoundedOrder`
* `top_sup_eq`
* `sup_top_eq`
* `bot_sup_eq`
* `sup_bot_eq`
* `top_inf_eq`
* `inf_top_eq`
* `bot_inf_eq`
* `inf_bot_eq`
## `Order.Lattice`
* `sup_idem`
* `sup_comm`
* `sup_assoc`
* `sup_left_idem`
* `sup_right_idem`
* `inf_idem`
* `inf_comm`
* `inf_assoc`
* `inf_left_idem`
* `inf_right_idem`
* `sup_inf_left`
* `sup_inf_right`
* `inf_sup_left`
* `inf_sup_right`
## `Order.MinMax`
* `max_min_distrib_left`
* `max_min_distrib_right`
* `min_max_distrib_left`
* `min_max_distrib_right`
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
0 commit comments