Frama-C:
Plug-ins:
Libraries:

Frama-C API - X

include Input_with_arg
include Input
val option_name : string

The name of the option

val help : string

A description for this option (e.g. used by -help). If help = "", then it has the special meaning "undocumented"

val arg_name : string

A standard name for the argument which may be used in the description. If empty, a generic arg_name is generated.

include Datatype.S
include Datatype.S_no_copy
val name : string

Unique name of the datatype.

val descr : t Descr.t

Datatype descriptor.

val packed_descr : Structural_descr.pack

Packed version of the descriptor.

val reprs : t list

List of representants of the descriptor.

val equal : t -> t -> bool
val compare : t -> t -> int

Comparison: same spec than Stdlib.compare.

val hash : t -> int

Hash function: same spec than Hashtbl.hash.

val pretty : Stdlib.Format.formatter -> t -> unit

Pretty print each value in an user-friendly way.

val mem_project : (Project_skeleton.t -> bool) -> t -> bool

mem_project f x must return true iff there is a value p of type Project.t in x such that f p returns true.

val copy : t -> t

Deep copy: no possible sharing between x and copy x.

val default : t
val of_string : string -> t option
val to_string : t -> string