Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stdpp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
52
Issues
52
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Iris
stdpp
Commits
48bded44
Commit
48bded44
authored
Mar 15, 2019
by
Robbert Krebbers
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Put list notations like `(++)` in `list_scope` instead of `stdpp_scope`.
parent
f9480244
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
theories/list.v
theories/list.v
+6
-6
No files found.
theories/list.v
View file @
48bded44
...
@@ -30,12 +30,12 @@ Arguments Permutation {_} _ _ : assert.
...
@@ -30,12 +30,12 @@ Arguments Permutation {_} _ _ : assert.
Arguments Forall_cons {_} _ _ _ _ _ : assert.
Arguments Forall_cons {_} _ _ _ _ _ : assert.
Remove Hints Permutation_cons : typeclass_instances.
Remove Hints Permutation_cons : typeclass_instances.
Notation "(::)" := cons (only parsing) :
stdpp
_scope.
Notation "(::)" := cons (only parsing) :
list
_scope.
Notation "( x ::)" := (cons x) (only parsing) :
stdpp
_scope.
Notation "( x ::)" := (cons x) (only parsing) :
list
_scope.
Notation "(:: l )" := (λ x, cons x l) (only parsing) :
stdpp
_scope.
Notation "(:: l )" := (λ x, cons x l) (only parsing) :
list
_scope.
Notation "(++)" := app (only parsing) :
stdpp
_scope.
Notation "(++)" := app (only parsing) :
list
_scope.
Notation "( l ++)" := (app l) (only parsing) :
stdpp
_scope.
Notation "( l ++)" := (app l) (only parsing) :
list
_scope.
Notation "(++ k )" := (λ l, app l k) (only parsing) :
stdpp
_scope.
Notation "(++ k )" := (λ l, app l k) (only parsing) :
list
_scope.
Infix "≡ₚ" := Permutation (at level 70, no associativity) : stdpp_scope.
Infix "≡ₚ" := Permutation (at level 70, no associativity) : stdpp_scope.
Notation "(≡ₚ)" := Permutation (only parsing) : stdpp_scope.
Notation "(≡ₚ)" := Permutation (only parsing) : stdpp_scope.
...
...
Robbert Krebbers
@robbertkrebbers
mentioned in merge request
!62 (merged)
·
Mar 15, 2019
mentioned in merge request
!62 (merged)
mentioned in merge request !62
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment