Skip to content
Snippets Groups Projects
Commit 884299ba authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Change some notations to only parsing.

parent e79e91f7
No related branches found
No related tags found
No related merge requests found
......@@ -38,11 +38,11 @@ Notation "(≠ x )" := (λ y, y ≠ x) (only parsing) : C_scope.
Hint Extern 0 (?x = ?x) => reflexivity.
Notation "(→)" := (λ x y, x y) : C_scope.
Notation "( T →)" := (λ y, T y) : C_scope.
Notation "(→ T )" := (λ y, y T) : C_scope.
Notation "(→)" := (λ x y, x y) (only parsing) : C_scope.
Notation "( T →)" := (λ y, T y) (only parsing) : C_scope.
Notation "(→ T )" := (λ y, y T) (only parsing) : C_scope.
Notation "t $ r" := (t r)
(at level 65, right associativity,only parsing) : C_scope.
(at level 65, right associativity, only parsing) : C_scope.
Infix "∘" := compose : C_scope.
Notation "(∘)" := compose (only parsing) : C_scope.
Notation "( f ∘)" := (compose f) (only parsing) : C_scope.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment