package rfsm

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | Ev of Ident.t
    (*

    pure event

    *)
  2. | Upd of Syntax.lval * Value.t
    (*

    assignation (lval <- v)

    *)
  3. | StateMove of string * string
    (*

    state move (src,dst)

    *)
val is_pure_event : t -> bool
val compare : t -> t -> int
val pp : Stdlib.Format.formatter -> t -> unit