English
From a type X with a preorder, one obtains a bundled Preord that has the same underlying type.
Русский
Из типа X с заданным порядком получается упакованный Preord, имеющий ту же базовую множество.
LaTeX
$$$(Preord.of X)\text{ (as a Preord) has underlying type } X$$$
Lean4
/-- Construct a bundled `Preord` from the underlying type and typeclass. -/
abbrev of (X : Type u) [Preorder X] : Preord :=
⟨X⟩