English
There is a canonical embedding of SNum into ℤ, i.e. the coercion from SNum to ℤ is given by the same map as Int.fromSnum, namely s ↦ ofSnum(s).
Русский
Существует каноническое вложение SNum в ℤ, то есть включение SNum в ℤ задаётся тем же отображением, что и в Int, то есть s ↦ ofSnum(s).
LaTeX
$$$$\forall s \in \mathrm{SNum},\ (s\;:\mathbb{Z}) = \mathrm{ofSnum}(s).$$$$
Lean4
instance snumCoe : Coe SNum ℤ :=
⟨ofSnum⟩