Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Notation Question

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Notation Question


Chronological Thread 
  • From: Gregory Bush <gbush AT mysck.com>
  • To: coq-club AT inria.fr
  • Subject: [Coq-Club] Notation Question
  • Date: Thu, 20 Dec 2012 14:29:56 -0500

In the following example, is there a modifier I can use when declaring the notation so it doesn't hide the notation for sigT?

Require Import List.

(* So far so good *)

Check {x : nat & {y | x < y}}.

Notation "{ A , .. , B }" := (cons A .. (cons B nil) ..).

(* Oops *)

Check {x : nat & {y | x < y}}.




Archive powered by MHonArc 2.6.18.

Top of Page