Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Fiber.O
Source>>>
is a sequencing operator. a >>> b
is the fiber that first executes a
and then b
.
>>=
is similar to >>>
except that the result of the first fiber is used to create the second one.
t >>| f
is the same as t >>= fun x -> return (f x)
but slightly more efficient.