package tyre

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

Module Tyre.InfixSource

Sourceval (<|>) : 'a t -> 'b t -> [ `Left of 'a | `Right of 'b ] t

t <|> t' is alt t t'.

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

t <&> t' is seq t t'.

Sourceval (*>) : _ t -> 'a t -> 'a t

ti *> t is prefix ti t.

Sourceval (<*) : 'a t -> _ t -> 'a t

t <* ti is suffix t ti.