Quick StartTryGuideAPICommunityBlogGitHub

Standard Library

Below is the API for the OCaml standard library. It's directly copied over from the OCaml Manual, formatted to the Reason syntax and styled accordingly. The API docs are work-in-progress; we'll be polishing these gradually!

If you're targeting JavaScript, the API docs for BuckleScript includes all of below, plus JS-specific APIs.

sig

  type t = string
  val compare : Digest.t -> Digest.t -> int
  val string : string -> Digest.t
  val bytes : bytes -> Digest.t
  val substring : string -> int -> int -> Digest.t
  val subbytes : bytes -> int -> int -> Digest.t
  external channel : Pervasives.in_channel -> int -> Digest.t
    = "caml_md5_chan"
  val file : string -> Digest.t
  val output : Pervasives.out_channel -> Digest.t -> unit
  val input : Pervasives.in_channel -> Digest.t
  val to_hex : Digest.t -> string
  val from_hex : string -> Digest.t
end