Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
614c8171
Commit
614c8171
authored
2 years ago
by
Valentin Perrelle
Committed by
David Bühler
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
[Kernel] Extend State_builder.Hashtbl with two standard functions
parent
590f908a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/libraries/project/state_builder.ml
+4
-0
4 additions, 0 deletions
src/libraries/project/state_builder.ml
src/libraries/project/state_builder.mli
+11
-0
11 additions, 0 deletions
src/libraries/project/state_builder.mli
with
15 additions
and
0 deletions
src/libraries/project/state_builder.ml
+
4
−
0
View file @
614c8171
...
@@ -490,9 +490,11 @@ module type Hashtbl = sig
...
@@ -490,9 +490,11 @@ module type Hashtbl = sig
?
cmp
:
(
key
->
key
->
int
)
->
(
key
->
data
->
'
a
->
'
a
)
->
'
a
->
'
a
?
cmp
:
(
key
->
key
->
int
)
->
(
key
->
data
->
'
a
->
'
a
)
->
'
a
->
'
a
val
memo
:
?
change
:
(
data
->
data
)
->
(
key
->
data
)
->
key
->
data
val
memo
:
?
change
:
(
data
->
data
)
->
(
key
->
data
)
->
key
->
data
val
find
:
key
->
data
val
find
:
key
->
data
val
find_opt
:
key
->
data
option
val
find_all
:
key
->
data
list
val
find_all
:
key
->
data
list
val
mem
:
key
->
bool
val
mem
:
key
->
bool
val
remove
:
key
->
unit
val
remove
:
key
->
unit
val
to_seq
:
unit
->
(
key
*
data
)
Seq
.
t
end
end
module
Hashtbl
module
Hashtbl
...
@@ -548,6 +550,7 @@ struct
...
@@ -548,6 +550,7 @@ struct
let
replace
key
v
=
H
.
replace
!
state
key
v
let
replace
key
v
=
H
.
replace
!
state
key
v
let
add
key
v
=
H
.
add
!
state
key
v
let
add
key
v
=
H
.
add
!
state
key
v
let
find
key
=
H
.
find
!
state
key
let
find
key
=
H
.
find
!
state
key
let
find_opt
key
=
H
.
find_opt
!
state
key
let
find_all
key
=
H
.
find_all
!
state
key
let
find_all
key
=
H
.
find_all
!
state
key
let
mem
key
=
H
.
mem
!
state
key
let
mem
key
=
H
.
mem
!
state
key
let
remove
key
=
H
.
remove
!
state
key
let
remove
key
=
H
.
remove
!
state
key
...
@@ -555,6 +558,7 @@ struct
...
@@ -555,6 +558,7 @@ struct
let
iter_sorted
?
cmp
f
=
H
.
iter_sorted
?
cmp
f
!
state
let
iter_sorted
?
cmp
f
=
H
.
iter_sorted
?
cmp
f
!
state
let
fold
f
acc
=
H
.
fold
f
!
state
acc
let
fold
f
acc
=
H
.
fold
f
!
state
acc
let
fold_sorted
?
cmp
f
acc
=
H
.
fold_sorted
?
cmp
f
!
state
acc
let
fold_sorted
?
cmp
f
acc
=
H
.
fold_sorted
?
cmp
f
!
state
acc
let
to_seq
()
=
H
.
to_seq
!
state
let
memo
?
change
f
key
=
let
memo
?
change
f
key
=
try
try
...
...
This diff is collapsed.
Click to expand it.
src/libraries/project/state_builder.mli
+
11
−
0
View file @
614c8171
...
@@ -351,11 +351,22 @@ module type Hashtbl = sig
...
@@ -351,11 +351,22 @@ module type Hashtbl = sig
(** Return the current binding of the given key.
(** Return the current binding of the given key.
@raise Not_found if the key is not in the table. *)
@raise Not_found if the key is not in the table. *)
val
find_opt
:
key
->
data
option
(** Return the current binding of the given key or None if no such binding
exists.
@since Frama-C+dev *)
val
find_all
:
key
->
data
list
val
find_all
:
key
->
data
list
(** Return the list of all data associated with the given key. *)
(** Return the list of all data associated with the given key. *)
val
mem
:
key
->
bool
val
mem
:
key
->
bool
val
remove
:
key
->
unit
val
remove
:
key
->
unit
val
to_seq
:
unit
->
(
key
*
data
)
Seq
.
t
(** Iterate on the whole table.
@since Frama-C+dev *)
end
end
(** @see <https://frama-c.com/download/frama-c-plugin-development-guide.pdf> Plug-in Development Guide
(** @see <https://frama-c.com/download/frama-c-plugin-development-guide.pdf> Plug-in Development Guide
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment