Module P2p_peer_id.TableSource
include Tezos_error_monad.TzLwtreslib.Hashtbl.SeededS with type key = t
val create : ?random:bool -> int -> 'a tval add : 'a t -> key -> 'a -> unitval remove : 'a t -> key -> unitval find : 'a t -> key -> 'a optionval find_opt : 'a t -> key -> 'a optionval find_all : 'a t -> key -> 'a listval replace : 'a t -> key -> 'a -> unitval mem : 'a t -> key -> boolval iter : (key -> 'a -> unit) -> 'a t -> unitval iter_e :
(key -> 'a -> (unit, 'trace) result) ->
'a t ->
(unit, 'trace) resultval filter_map_inplace : (key -> 'a -> 'a option) -> 'a t -> unitval try_map_inplace : (key -> 'a -> ('a, 'trace) result) -> 'a t -> unitval fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'bval fold_e :
(key -> 'a -> 'b -> ('b, 'trace) result) ->
'a t ->
'b ->
('b, 'trace) resultval to_seq_values : 'a t -> 'a Seq.tval add_seq : 'a t -> (key * 'a) Seq.t -> unitval replace_seq : 'a t -> (key * 'a) Seq.t -> unit