equal
- There are two equality operators in OCaml,
=
and==
, with corresponding inequality operators<>
and!=
. Operators=
and<>
examine structural equality whereas==
and!=
examine physical equality. - OCaml library : Stdlib
Nov 05, 20231 min read
=
and ==
, with corresponding inequality operators <>
and !=
. Operators =
and <>
examine structural equality whereas ==
and !=
examine physical equality.