Reputation: 13
I'm a newbie to the OCaml language, I am currently watching . There is an example that uses Int.descending , but I didn't find the relevant information in the documentation (4.07.0). I only saw Int32 and Int64. Where can I find documentation about Int.descending And its other properties.
Upvotes: 1
Views: 84
Reputation: 9030
You cannot find Int.descending
just because it is not in the standard library of OCaml.
My guess is that you are looking a code using Jane Street's Base library which has descending
:
https://github.com/janestreet/base/blob/dee8d637af902a92c739df7f3f8bc4d715c9d35d/src/comparable_intf.ml
Upvotes: 3