Skip to content

Instantly share code, notes, and snippets.

From Coq Require Import Utf8 ssreflect ssrbool ssrfun.
Parameter B : Type.
Parameter A : nat → Type.
Definition foo (n:nat) (a: A n) : B.
Proof.
admit.
Admitted.
@davidjao
davidjao / AwesomeListLemmas.v
Last active April 23, 2023 22:52 — forked from Agnishom/AwesomeListLemmas.v
Awesome List Lemmas
(*
Some lemmas that can be used in conjunction with those in Coq.Lists.List
See https://coq.inria.fr/library/Coq.Lists.List.html
*)
From Coq Require Import PeanoNat Lia List Wf_nat Utf8 ssreflect ssrfun ssrbool.
Import ListNotations.
(* firstn / skipn / nth_error / map / combine *)