package dose

  1. Overview
  2. Docs
type debtypes = [
  1. | `Deb
  2. | `Edsp
]
type rpmtypes = [
  1. | `Hdlist
  2. | `Synthesis
]
type osgitypes = [
  1. | `Eclipse
]
type othertypes = [
  1. | `Csw
  2. | `Cv
]
type filetypes = [
  1. | `Csw
  2. | `Cudf
  3. | `Cv
  4. | `Deb
  5. | `Eclipse
  6. | `Edsp
  7. | `Hdlist
  8. | `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