Module Printf.ArgsSource

The Args module defines a heterogeneous list type, which can be used as the argument of the l*printf functions. For more documentation, see the similar module Format.Args.

Sourcetype ('a, 'r) t =
  1. | [] : ('r, 'r) t
  2. | :: : 'a * ('b, 'r) t -> ('a -> 'b, 'r) t
Sourceval apply : 'a -> ('a, 'r) t -> 'r
Sourceval (@) : ('a, 'r1) t -> ('r1, 'r2) t -> ('a, 'r2) t