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.
2 parents 6ac33b6 + eae62f6 commit 109796aCopy full SHA for 109796a
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