Structure Sref


Source File Identifier index Theory binding index

signature Sref =
sig

  type 'a t
  val new     : 'a -> 'a t
  val update  : 'a t -> ('a -> 'a) -> unit  (* locks *)
  val value   : 'a t -> 'a               (* no locks *)

end


Source File Identifier index Theory binding index

HOL 4, Kananaskis-13