package frama-c
Install
Dune Dependency
Authors
-
MMichele Alberti
-
TThibaud Antignac
-
GGergö Barany
-
PPatrick Baudin
-
TThibaut Benjamin
-
AAllan Blanchard
-
LLionel Blatter
-
FFrançois Bobot
-
RRichard Bonichon
-
QQuentin Bouillaguet
-
DDavid Bühler
-
ZZakaria Chihani
-
LLoïc Correnson
-
JJulien Crétin
-
PPascal Cuoq
-
ZZaynah Dargaye
-
BBasile Desloges
-
JJean-Christophe Filliâtre
-
PPhilippe Herrmann
-
MMaxime Jacquemin
-
FFlorent Kirchner
-
AAlexander Kogtenkov
-
TTristan Le Gall
-
JJean-Christophe Léchenet
-
MMatthieu Lemerre
-
DDara Ly
-
DDavid Maison
-
CClaude Marché
-
AAndré Maroneze
-
TThibault Martin
-
FFonenantsoa Maurica
-
MMelody Méaulle
-
BBenjamin Monate
-
YYannick Moy
-
PPierre Nigron
-
AAnne Pacalet
-
VValentin Perrelle
-
GGuillaume Petiot
-
DDario Pinto
-
VVirgile Prevosto
-
AArmand Puccetti
-
FFélix Ridoux
-
VVirgile Robles
-
JJan Rochel
-
MMuriel Roger
-
JJulien Signoles
-
NNicolas Stouls
-
KKostyantyn Vorobyov
-
BBoris Yakobowski
Maintainers
Sources
sha256=0220bc743b7da2468ceb926f331edc7ddfaa7c603ba47962de3e33c8e1e3f593
doc/frama-c.kernel/Frama_c_kernel/Parameter_category/index.html
Module Frama_c_kernel.Parameter_category
Category for parameter collections. A category groups together a set of possible values of a given type for some parameters. It may be created once and used several times.
Type explaining how to manipulate the elements of the category.
create name ty ~register states access
creates a category of the given name for the given type. No category with such a name for the same type must be already registered. If register
, save the category for further re-use. states
is a list of states which the category is based upon. access
is how to manipulate this category.
copy_and_rename s ~register c
renames the category c
into s
and returns the new built category which is registered according to register
.
val get_name : 'a t -> string
Name of the category.
val get_fold : 'a t -> ('a -> 'acc -> 'acc) -> 'acc -> 'acc
Fold over the elements of the given category.
val get_mem : 'a t -> 'a -> bool
Is the given element present in the category?