module ITimed:sig..end
Timeline
typetime =int
type ('a, 'b) animated =
| |
From of |
(* |
| *) |
| |
Evol of |
(* |
| *) |
The type 'a is the output.
The type 'b is a parameter for the function f that
make the evolution over the input time.
type ('a, 'b) timed =
| |
Static of |
(* | with | *) |
| |
Animated of |
(* |
| *) |
val val_at : time -> ('a, 'b) animated list -> 'a
val get_val : time -> ('a, 'b) timed -> 'a
val finished : time -> ('a, 'b) animated list -> boolmodule Labels:sig..end