package dispatch

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

A module that implements the dispatch operations for a DLS represented as a string literal. A more familiar interface for the Web world.

type 'a route = string * 'a

The type of a route using the DSL to specify the path pattern. For example, here are some DSL strings and their translation:

  • of_dsl "/" = ([], `Exact)
  • of_dsl "/user/:id" = ([`Lit, "user"; `Var, "id"], `Exact)
  • of_dsl "/user/:id/*" = ([`Lit, "user"; `Var, "id"], `Prefix)
  • of_dsl "/user/:id/settings" = ([`Lit, "user"; `Var, "id"; `Var "settings"], `Exact)
val dispatch : (assoc -> string option -> 'a) route list -> string -> ('a, string) Result.result
val dispatch_exn : (assoc -> string option -> 'a) route list -> string -> 'a
OCaml

Innovation. Community. Security.