File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ module CombineWriterWithResult =
233
233
234
234
// Catch and throw is generic over all monad transformers in F#+ so catch works in this example
235
235
// because there is a Result in the stack. We use it here to consolidate Result's 'TError.
236
-
236
+ (*
237
237
module CombineReaderWithWriterWithResult =
238
238
239
239
let divide5By : float -> Result<float, string> = function
@@ -262,7 +262,7 @@ module CombineReaderWithWriterWithResult =
262
262
let run expr = ReaderT.run expr >> ResultT.run >> Writer.run
263
263
264
264
let (_, log) = run divide DateTime.UtcNow
265
-
265
+ *)
266
266
267
267
// Many popular F# libraries are in fact an instantiation of a specific monad combination.
268
268
// The following example demonstrate how to code a mini-Suave lib in a few lines
You can’t perform that action at this time.
0 commit comments