package spotlib

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module SpotStream.InfixSource

Sourceval (>>=) : 'a t -> ('a -> 'b t) -> 'b t

synonym of bind

Sourceval (>>|) : 'a t -> ('a -> 'b) -> 'b t

synonum of fmap, with the flipped arguments

Applicative style binops

Sourceval (^<$>) : ('a -> 'b) -> 'a t -> 'b t

same as map, <$> in Haskell

Sourceval (/<*>) : ('a -> 'b) t -> 'a t -> 'b t

<*> in Haskell