package orsetto

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

Use Mk_affix(R) to make the optional affix operators for R.

Parameters

module R : Regular

Signature

val (!:) : R.event -> R.term

Use !: event as one event.

val (!^) : (R.event -> bool) -> R.term

Use !^ f as sat f.

val (!?) : R.term -> R.term

Use !? term as opt term

val (!*) : R.term -> R.term

Use !* term as star term

val (!+) : R.term -> R.term

Use !+ term as seq ~a:1 term

val ($|) : R.term -> R.term -> R.term

Use a $| b as alt2 a b

val ($&) : R.term -> R.term -> R.term

Use a $& b as cat2 a b

val ($=) : R.term -> 'r -> 'r R.fin

Use term $= v as fin term v