gmalecha / coq-ltac-iter

Access hint databases from tactics.
MIT License
12 stars 3 forks source link

coq-ltac-iter

A Coq plugin that provides a tactic that iterates over various collections of terms. For example,

Create HintDb my_lemmas.

Hint Resolve lem1 lem2 : my_lemmas.

Ltac the_tactic :=
  let k lem := idtac lem in
  foreach [ db:my_lemmas ] k.
(* OUTPUT:
lem1
lem2
*)

There are three versions of the iterator

And there are several types of collections:

Bugs & Feature Requests

Please submit bugs and feature requests to the github issue tracker.

Pull requests are also welcome.

Install from OPAM

Make sure you added the Coq repository:

opam repo add coq-released https://coq.inria.fr/opam/released

and run:

opam install coq-ltac-iter

Install Manually

You can run:

make install

to install this ltac-iter.