mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 19:25:36 -05:00
util: add Str_map
This commit is contained in:
parent
1c07b027ef
commit
e73bf4d3e5
2 changed files with 2 additions and 0 deletions
|
|
@ -60,3 +60,4 @@ module Int_set = CCSet.Make (CCInt)
|
|||
module Int_map = CCMap.Make (CCInt)
|
||||
module Int_tbl = CCHashtbl.Make (CCInt)
|
||||
module Str_tbl = CCHashtbl.Make (CCString)
|
||||
module Str_map = CCMap.Make (CCString)
|
||||
|
|
|
|||
|
|
@ -25,3 +25,4 @@ module Int_set : CCSet.S with type elt = int
|
|||
module Int_map : CCMap.S with type key = int
|
||||
module Int_tbl : CCHashtbl.S with type key = int
|
||||
module Str_tbl : CCHashtbl.S with type key = string
|
||||
module Str_map : CCMap.S with type key = string
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue