package dose3

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type debtypes = [
  1. | `Deb
  2. | `DebSrc
  3. | `Edsp
]
type rpmtypes = [
  1. | `Hdlist
  2. | `Synthesis
]
type othertypes = [
  1. | `Csw
  2. | `Npm
  3. | `Opam
  4. | `Pef
]
type filetypes = [
  1. | `Csw
  2. | `Cudf
  3. | `Deb
  4. | `DebSrc
  5. | `Edsp
  6. | `Hdlist
  7. | `Npm
  8. | `Opam
  9. | `Pef
  10. | `Synthesis
]
val supported_input_types : filetypes list
type url = {
  1. scheme : filetypes;
  2. path : string;
}
val of_string : string -> url
exception Invalid_url of string
val to_string : url -> string
val scheme_to_string : filetypes -> string
val scheme_of_string : string -> filetypes