package core

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = Base.Map.Finished_or_unfinished.t =
  1. | Finished
  2. | Unfinished
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t -> t -> int
include Ppx_enumerate_lib.Enumerable.S with type t := t
val all : t list
include Ppx_compare_lib.Equal.S with type t := t
val equal : t -> t -> bool
val sexp_of_t : t -> Sexplib0.Sexp.t
val of_continue_or_stop : Continue_or_stop.t -> t

Maps Continue to Finished and Stop to Unfinished.

val to_continue_or_stop : t -> Continue_or_stop.t

Maps Finished to Continue and Unfinished to Stop.