Test.Arg
Test arguments.
type 'a t
The type for arguments of type 'a.
'a
val make : unit -> 'a t
make () is a new test argument.
make ()
type value
The type for argument values.
val value : 'a t -> 'a -> value
value arg v is arg with a value of v.
value arg v
arg
v