Source file event.ml

1
2
3
4
5
6
7
8
9
open! Core_kernel
open! Import

module type S = sig
  type t

  val sequence : t list -> t
  val no_op : t
end