package ecaml

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

    Can exit without match by confirming

    *)
  2. | Confirm_after_completion
    (*

    Can exit without match by typing, or by completing and then confirming

    *)
  3. | False
    (*

    Can exit without match

    *)
  4. | Require_match_or_null
    (*

    Cannot exit without match unless the input is nil

    *)
  5. | True
    (*

    Cannot exit without match

    *)

Must input match a completion candidate?

include Ecaml_value.Valueable.S with type t := t
val of_value_exn : Ecaml_value__.Value0.t -> t
val to_value : t -> Ecaml_value__.Value0.t
val default : t

False