package spotlib

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

Module Xlazy.InfixSource

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

synonym of bind

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

synonum of fmap, with the flipped arguments

Applicative style binops

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

same as map, <$> in Haskell

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

<*> in Haskell