package orsetto

  1. Overview
  2. Docs
On This Page
  1. Infix operators
Legend:
Library
Module
Module type
Parameter
Class
Class type
Infix operators
val (@:) : 'a -> 'a Seq.t -> 'a Seq.t

Use v @: s to compose the sequence that produces v followed by the sequence s. This is the right-associative infix operator version of the cons function (defined above).

val (@+) : 'a Seq.t -> 'a Seq.t -> 'a Seq.t

Use a @+ b to compose the sequence that produces a followed by b. This is the right-associative infix operator version of the concat function (defined above).