diff options
| author | Gaëtan Gilbert | 2019-06-03 14:32:18 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2019-06-03 14:32:18 +0200 |
| commit | 4541d28ba3c50bc8e45c4ccf418bbdd225454dec (patch) | |
| tree | 2e308e2f0d081519f608969152b309e7922f2637 /kernel/names.ml | |
| parent | 7032085c809993d6a173e51aec447c02828ae070 (diff) | |
Expose set interface to option tables
This lets us avoid having to cache the SearchBlacklist.elements call
in search as we can just use the set module's for_all function.
Diffstat (limited to 'kernel/names.ml')
| -rw-r--r-- | kernel/names.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/names.ml b/kernel/names.ml index 047a1d6525..39cd4548f5 100644 --- a/kernel/names.ml +++ b/kernel/names.ml @@ -671,6 +671,7 @@ module InductiveOrdered_env = struct let compare = ind_user_ord end +module Indset = Set.Make(InductiveOrdered) module Indmap = Map.Make(InductiveOrdered) module Indmap_env = Map.Make(InductiveOrdered_env) |
