user10915470
user10915470

Reputation: 13

Why is there no information about Int in the documentation for OCaml (4.07.0)?

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

Answers (1)

camlspotter
camlspotter

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

Related Questions