(************************************************************************)
(* * The Coq Proof Assistant / The Coq Development Team *)
(* v * INRIA, CNRS and contributors - Copyright 1999-2018 *)
(* <O___,, * (see CREDITS file for the list of authors) *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(* * (see LICENSE file for the text of the license) *)
(************************************************************************)
type value =
| Any
(** A value that we won't check, *)
| Fail of string
(** A value that shouldn't be there at all, *)
| Tuple of string * value array
(** A debug name and sub-values in this block *)
| Sum of string * int * value array array
(** A debug name, a number of constant constructors, and sub-values
at each position of each possible constructed variant *)
| Array of value
| List of value
| Opt of value
| Int
| String
(** Builtin Ocaml types. *)
| Annot of string * value
(** Adds a debug note to the inner value *)
| Dyn
(** Coq's Dyn.t *)
| Proxy of value ref
(** Same as the inner value, used to define recursive types *)
| Uint63
(** NB: List and Opt have their own constructors to make it easy to
define eg [let rec foo = List foo]. *)
val v_univopaques : value
val v_libsum : value
val v_lib : value
val v_opaques : value
val v_stm_seg : value
¤ Dauer der Verarbeitung: 0.0 Sekunden
(vorverarbeitet)
¤
|
Haftungshinweis
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.
|