You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we have f :: b -> Void and g :: a -> b, we can get f . g :: a -> Void. But if we do this recursively, we'll get closures of increasing size. Would it make sense to offer something like this?
compNeg::NFDataa=> (b->Void) -> (a->b) ->a->Void
compNeg _ _ a = a `deepseq`error"Weird NFData instance or something"
The text was updated successfully, but these errors were encountered:
If we have
f :: b -> Void
andg :: a -> b
, we can getf . g :: a -> Void
. But if we do this recursively, we'll get closures of increasing size. Would it make sense to offer something like this?The text was updated successfully, but these errors were encountered: