package incr_dom

  1. Overview
  2. Docs
type 'a t = {
  1. top : 'a;
  2. left : 'a;
  3. bottom : 'a;
  4. right : 'a;
}
include sig ... end
val t_of_sexp : (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a t
val sexp_of_t : ('a -> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
val compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int
val right : 'a t -> 'a
val bottom : 'a t -> 'a
val left : 'a t -> 'a
val top : 'a t -> 'a
module Fields : sig ... end
val height : int t -> int
val width : int t -> int