Header menu logo bristlecone

Writer Module

Types

Type Description

Writer<'a, 'log>

WriterBuilder

Functions and values

Function or value Description

bind f arg2

Full Usage: bind f arg2

Parameters:
Returns: Writer<'b, 'c>
f : 'a -> Writer<'b, 'c>
arg1 : Writer<'a, 'c>
Returns: Writer<'b, 'c>

flatMap f w

Full Usage: flatMap f w

Parameters:
Returns: Writer<'b, 'c>
f : 'a -> Writer<'b, 'c>
w : Writer<'a, 'c>
Returns: Writer<'b, 'c>

map f w

Full Usage: map f w

Parameters:
    f : 'a -> 'b
    w : Writer<'a, 'c>

Returns: Writer<'b, 'c>
f : 'a -> 'b
w : Writer<'a, 'c>
Returns: Writer<'b, 'c>

return' x

Full Usage: return' x

Parameters:
    x : 'a

Returns: Writer<'a, 'b>
x : 'a
Returns: Writer<'a, 'b>

run arg1

Full Usage: run arg1

Parameters:
Returns: 'a * 'b list
arg0 : Writer<'a, 'b>
Returns: 'a * 'b list

tell entry

Full Usage: tell entry

Parameters:
    entry : 'a

Returns: Writer<unit, 'a>
entry : 'a
Returns: Writer<unit, 'a>

writer

Full Usage: writer

Returns: WriterBuilder
Returns: WriterBuilder

Type something to start searching.