package bistro

  1. Overview
  2. Docs

Standard definitions

type 'a workflow = 'a Workflow.t
type nonrec ('a, 'b) selector = ('a, 'b) selector
type nonrec docker_image = docker_image
class type 'a directory = object ... end

Conventional type to represent directory targets

class type file = object ... end

Conventional type to represent file targets. The object type is to represent properties of the file, like the type of encoding (text or binary) or the format.

class type binary_file = object ... end
class type 'a marshalled_value = object ... end

Conventional type to represent OCaml values saved with the Marshal module.

class type 'a zip = object ... end
class type 'a gz = object ... end
class type 'a bz2 = object ... end
class type 'a tar = object ... end
class type text_file = object ... end
class type 'a sexp_value = object ... end

Conventional type to represent OCaml values saved as S-expressions.

class type pdf = object ... end
class type html = object ... end
class type png = object ... end
class type svg = object ... end
class type tsv = object ... end
module Unix_tools : sig ... end