We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17ce830 commit d52792aCopy full SHA for d52792a
docsrc/content/abstraction-monad.fsx
@@ -233,7 +233,7 @@ module CombineWriterWithResult =
233
234
// Catch and throw is generic over all monad transformers in F#+ so catch works in this example
235
// because there is a Result in the stack. We use it here to consolidate Result's 'TError.
236
-
+(*
237
module CombineReaderWithWriterWithResult =
238
239
let divide5By : float -> Result<float, string> = function
@@ -262,7 +262,7 @@ module CombineReaderWithWriterWithResult =
262
let run expr = ReaderT.run expr >> ResultT.run >> Writer.run
263
264
let (_, log) = run divide DateTime.UtcNow
265
+*)
266
267
// Many popular F# libraries are in fact an instantiation of a specific monad combination.
268
// The following example demonstrate how to code a mini-Suave lib in a few lines
0 commit comments