Skip to content
Snippets Groups Projects
Commit 614c8171 authored by Valentin Perrelle's avatar Valentin Perrelle Committed by David Bühler
Browse files

[Kernel] Extend State_builder.Hashtbl with two standard functions

parent 590f908a
No related branches found
No related tags found
No related merge requests found
...@@ -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
......
...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment