Equality
Gleam has the ==
and !=
operators for checking
equality.
Gleam には等価性をチェックするための ==
演算子と !=
演算子があります。
The operators can be used with values of any type, but both sides of the operator must be of the same type.
この演算子はどんな型の値にも使えますが、演算子の両辺は同じ型でなければなりません。
Equality is checked structurally, meaning that two values are equal if they have the same structure rather than if they are at the same memory location.
等価性は構造的にチェックされます。つまり、2 つの値が同じメモリ位置にあるかどうかではなく、同じ構造を持っていれば等しいということです。