package decoders-ezxmlm

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val (>>=) : ('i, 'a) Decoders.Decoder.t -> ('a -> ('i, 'b) Decoders.Decoder.t) -> ('i, 'b) Decoders.Decoder.t
val (>|=) : ('i, 'a) Decoders.Decoder.t -> ('a -> 'b) -> ('i, 'b) Decoders.Decoder.t
val (<*>) : ('i, 'a -> 'b) Decoders.Decoder.t -> ('i, 'a) Decoders.Decoder.t -> ('i, 'b) Decoders.Decoder.t
type ('i, 'o) t_let = ('i, 'o) Decoders.Decoder.t
val let+ : ('i, 'a) t_let -> ('a -> 'b) -> ('i, 'b) t_let
val and+ : ('i, 'a) t_let -> ('i, 'b) t_let -> ('i, 'a * 'b) t_let
val let* : ('i, 'a) t_let -> ('a -> ('i, 'b) t_let) -> ('i, 'b) t_let
val and* : ('i, 'a) t_let -> ('i, 'b) t_let -> ('i, 'a * 'b) t_let