Skip to content

Commit

Permalink
Ltac2: fix type of FMap.fold
Browse files Browse the repository at this point in the history
Fix coq#18635

(cherry picked from commit 39b3871)
  • Loading branch information
SkySkimmer committed Feb 19, 2024
1 parent b0d8e8e commit 92f762d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion user-contrib/Ltac2/FMap.v
Expand Up @@ -29,7 +29,7 @@ Ltac2 @ external find_opt : 'k -> ('k, 'v) t -> 'v option := "coq-core.plugins.l

Ltac2 @ external mapi : ('k -> 'v -> 'r) -> ('k, 'v) t -> ('k, 'r) t := "coq-core.plugins.ltac2" "fmap_mapi".

Ltac2 @ external fold : ('k -> 'v -> 'acc) -> ('k, 'v) t -> 'acc -> 'acc := "coq-core.plugins.ltac2" "fmap_fold".
Ltac2 @ external fold : ('k -> 'v -> 'acc -> 'acc) -> ('k, 'v) t -> 'acc -> 'acc := "coq-core.plugins.ltac2" "fmap_fold".

Ltac2 @ external cardinal : ('k, 'v) t -> int := "coq-core.plugins.ltac2" "fmap_cardinal".

Expand Down

0 comments on commit 92f762d

Please sign in to comment.