package bistro

  1. Overview
  2. Docs
type 'a t =
  1. | Docker of docker_image * 'a t
  2. | Simple_command of 'a token list
  3. | And_list of 'a t list
  4. | Or_list of 'a t list
  5. | Pipe_list of 'a t list
and 'a token =
  1. | S of string
  2. | D of 'a
  3. | F of 'a token list
  4. | DEST
  5. | TMP
  6. | NP
  7. | MEM
  8. | EXE
val map : f:('a -> 'b) -> 'a t -> 'b t
val deps : 'a t -> 'a list