package semver

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = [
  1. | `Patch of int * int * int
  2. | `Minor of int * int
  3. | `Major of int
]
val of_string : string -> t option
val to_string : t -> string