Skip to content
Snippets Groups Projects
Commit 309d3554 authored by sof's avatar sof
Browse files

[project @ 1997-10-06 17:30:16 by sof]

Avoid unnecessary module dependency (PrelBase.$)
parent 8cc74c8e
No related merge requests found
......@@ -26,11 +26,11 @@ import GHC
unsafeInterleaveST :: ST s a -> ST s a
unsafeInterleaveST (ST m) = ST $ \ s ->
unsafeInterleaveST (ST m) = ST ( \ s ->
let
(r, new_s) = m s
in
(r, s)
(r, s))
unsafePerformPrimIO :: PrimIO a -> a
-- We give a fresh definition here. There are no
......
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