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