aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Init/DatatypesSyntax.v
blob: 06f28b503ad138ac8364572afa42560190e9d50e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(***********************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team    *)
(* <O___,, *        INRIA-Rocquencourt  &  LRI-CNRS-Orsay              *)
(*   \VV/  *************************************************************)
(*    //   *      This file is distributed under the terms of the      *)
(*         *       GNU Lesser General Public License Version 2.1       *)
(***********************************************************************)

(*i $Id$ i*)

Require Export Datatypes.

(** Symbolic notations for things in [Datatypes.v] *)

Arguments Scope sum [type_scope type_scope].
Arguments Scope prod [type_scope type_scope].

Infix "+" sum (at level 4, left associativity) : type_scope.
Infix "*" prod (at level 3, right associativity) : type_scope.

Notation "( x , y )" := (pair ? ? x y) (at level 0).
Notation Fst := (fst ? ?).
Notation Snd := (snd ? ?).

Arguments Scope option [ type_scope ].

(** Parsing only of things in [Datatypes.v] *)

Notation "< A , B > ( x , y )" := (pair A B x y) (at level 1, only parsing, A annot).
Notation "< A , B > 'Fst' ( p )" := (fst A B p) (at level 1, only parsing, A annot).
Notation "< A , B > 'Snd' ( p )" := (snd A B p) (at level 1, only parsing, A annot).