Skip to content
Snippets Groups Projects
Commit 9b0f7c75 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Put `Dom` as first argument of `FinMapDom`.

This way, type class search will fail immediately on first type
class constraint of any of the `fin_map_dom` lemmas if no `Dom`
can be found.
parent 57e1431e
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -6,10 +6,10 @@ function in a generic way, to allow more efficient implementations. *)
From stdpp Require Export collections fin_maps.
Set Default Proof Using "Type*".
Class FinMapDom K M D `{FMap M,
Class FinMapDom K M D `{ A, Dom (M A) D, FMap M,
A, Lookup K A (M A), A, Empty (M A), A, PartialAlter K A (M A),
OMap M, Merge M, A, FinMapToList K A (M A), EqDecision K,
A, Dom (M A) D, ElemOf K D, Empty D, Singleton K D,
ElemOf K D, Empty D, Singleton K D,
Union D, Intersection D, Difference D} := {
finmap_dom_map :>> FinMap K M;
finmap_dom_collection :>> Collection K D;
......
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