Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
StdEnv-doc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Cloogle
StdEnv-doc
Commits
a533f667
Commit
a533f667
authored
Apr 04, 2011
by
John van Groningen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix definition of Any
parent
9412550d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
StdOverloadedList.dcl
StdOverloadedList.dcl
+2
-2
StdOverloadedList.icl
StdOverloadedList.icl
+3
-3
No files found.
StdOverloadedList.dcl
View file @
a533f667
...
...
@@ -442,9 +442,9 @@ Or :: !u:(l v:Bool) -> Bool | List l Bool,[u<=v]
Any
p
l
:==
any_
l
where
any_
[]
any_
[
|
]
=
False
any_
[
b
:
tl
]
any_
[
|
b
:
tl
]
=
p
b
||
any_
tl
All
p
l
:==
all_
l
...
...
StdOverloadedList.icl
View file @
a533f667
...
...
@@ -649,10 +649,10 @@ Or [|b : tl]
=
b
||
Or
tl
Any
p
l
:==
any_
l
where
any_
[]
where
any_
[
|
]
=
False
any_
[
b
:
tl
]
any_
[
|
b
:
tl
]
=
p
b
||
any_
tl
All
p
l
:==
all_
l
...
...
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