We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 00e675e + 797367a commit 43a3c40Copy full SHA for 43a3c40
src/Data/Lazy.purs
@@ -51,8 +51,6 @@ instance euclideanRingLazy :: EuclideanRing a => EuclideanRing (Lazy a) where
51
div a b = defer \_ -> force a / force b
52
mod a b = defer \_ -> force a `mod` force b
53
54
-instance fieldLazy :: Field a => Field (Lazy a)
55
-
56
instance eqLazy :: Eq a => Eq (Lazy a) where
57
eq x y = (force x) == (force y)
58
0 commit comments