We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50a3039 commit c26059dCopy full SHA for c26059d
1 file changed
theories/datatypes/Array.ec
@@ -165,3 +165,7 @@ qed.
165
166
lemma size_map (f : 'a -> 'b) arr: size (map f arr) = size arr.
167
proof. by rewrite size_mkarray size_map sizeE. qed.
168
+
169
+lemma map_comp (f1: 'b -> 'c) (f2: 'a -> 'b) arr :
170
+ map (f1 \o f2) arr = map f1 (map f2 arr).
171
+proof. by rewrite /map map_comp ofarrayK. qed.
0 commit comments