Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Suggestion: allow repeat counts in intro patterns

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Suggestion: allow repeat counts in intro patterns


Chronological Thread 
  • From: Jonathan <jonikelee AT gmail.com>
  • To: Coq Club <coq-club AT inria.fr>
  • Subject: [Coq-Club] Suggestion: allow repeat counts in intro patterns
  • Date: Thu, 25 Sep 2014 14:12:24 -0400

A suggestion for a feature that helps one deal with long intro patterns containing repeating sequences of "_", "?", etc.

What if each of the intro pattern special symbols could have a repeat count? For instance, instead of:

intros _ _ _ _ _ _ _ x _ _ _ _ y.

Have:

intros 7 _ x 4 _ y.

where these repeat counts are only for parsing. For extra credit, allow repeated subpatterns:

intros (? 8 (& ?)).

instead of

intros (? & ? & ? & ? & ? & ? & ? & ? & ?).

-- Jonathan



  • [Coq-Club] Suggestion: allow repeat counts in intro patterns, Jonathan, 09/25/2014

Archive powered by MHonArc 2.6.18.

Top of Page