Operators for working with the WriterResult type
f <!> x
'a -> 'b
Writer<'c, Result<'a, 'd>>
Writer<'c, Result<'b, 'd>>
WriterResult.map
f <*> x
Writer<'a, Result<('b -> 'c), 'd>>
Writer<'a, Result<'b, 'd>>
Writer<'a, Result<'c, 'd>>
WriterResult.apply
x >>= f
Writer<'a, Result<'b, 'c>>
'b -> Writer<'a, Result<'d, 'c>>
Writer<'a, Result<'d, 'c>>
WriterResult.bind
Type something to start searching.