Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
Packages
dph
Commits
1c9177d2
Commit
1c9177d2
authored
Apr 02, 2007
by
rl@cse.unsw.edu.au
Browse files
Add INLINE pragmas
parent
7c9a2e6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Data/Array/Parallel/Base/Closure.hs
View file @
1c9177d2
...
...
@@ -8,8 +8,10 @@ infixr 0 $:
data
a
:->
b
=
forall
e
.
Clo
!
(
e
->
a
->
b
)
e
closure
::
(
e
->
a
->
b
)
->
e
->
(
a
:->
b
)
{-# INLINE closure #-}
closure
=
Clo
(
$:
)
::
(
a
:->
b
)
->
a
->
b
{-# INLINE ($:) #-}
Clo
f
e
$:
x
=
f
e
x
Write
Preview
Supports
Markdown
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