package bistro

  1. Overview
  2. Docs
type 'a t =
  1. | Simple_command of 'a Template.t
  2. | And_list of 'a t list
  3. | Or_list of 'a t list
  4. | Pipe_list of 'a t list
val map : 'a t -> f:('a -> 'b) -> 'b t
val deps : 'a t -> compare:('a -> 'a -> int) -> 'a list