We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ac33b6 commit eae62f6Copy full SHA for eae62f6
src/Control/Lazy.purs
@@ -16,5 +16,5 @@ class Lazy l where
16
-- | `fix` defines a value as the fixed point of a function.
17
-- |
18
-- | The `Lazy` instance allows us to generate the result lazily.
19
-fix :: forall l a. (Lazy l) => (l -> l) -> l
+fix :: forall l. (Lazy l) => (l -> l) -> l
20
fix f = defer (\_ -> f (fix f))
0 commit comments