We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This module is useful when doing ad-hoc tracing. We should have a linear version of it. With functions like:
trace :: String -> a #-> a traceShow :: Show a => a -> b #-> b traceEvent :: String -> a #-> a
It also includes some functions we can implement using linear applicatives and monads:
traceIO :: String -> IO () traceM :: Applicative f => String -> f ()
And, it does include some functions which does not make sense in a linear context, that we should exclude:
traceShowId :: Show a => a -> a
The text was updated successfully, but these errors were encountered:
utdemir
Successfully merging a pull request may close this issue.
This module is useful when doing ad-hoc tracing. We should have a linear version of it. With functions like:
It also includes some functions we can implement using linear applicatives and monads:
And, it does include some functions which does not make sense in a linear context, that we should exclude:
The text was updated successfully, but these errors were encountered: