Does != have meaning in OCaml?

you have experienced the difference between structural and physical equality. <> is to = (structural equality) as != is to == (physical equality) is false because each is instantiated in different memory locations, doing: Most of the time you’ll want to use = and <>. edit about when structural and physical equality are equivalent: You can use the what_is_it function and find out all the types that … Read more