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
Hi,
The following snippet from the tutorial doesn't type check: over Text.unlines (takes' n)
since
λ> :t over Pipes.Text.unlines
over Pipes.Text.unlines
:: Monad m =>
(Pipes.Core.Producer Text m r -> Pipes.Core.Producer Text m r)
-> FreeT (Pipes.Core.Producer Text m) m r
-> FreeT (Pipes.Core.Producer Text m) m r
and
λ> :t takes'
takes'
:: Monad m =>
Int -> FreeT (Producer a m) m x -> FreeT (Producer a m) m x
or am I missing something?
Best
The text was updated successfully, but these errors were encountered:
Hi,
The following snippet from the tutorial doesn't type check:
over Text.unlines (takes' n)
since
and
or am I missing something?
Best
The text was updated successfully, but these errors were encountered: