package transept

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

Source file parser.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module Make (S : Transept_specs.STREAM) (E : Transept_specs.ELEMENT) = struct
  include Transept_core.Parser.Make_via_stream (S) (E)
end

module For_char_via_stream (S : Transept_specs.STREAM) =
  Make
    (S)
    (struct
      type t = char
    end)

module Via_element_for_list (E : Transept_specs.ELEMENT) =
  Make (Transept_stream.Via_list) (E)

module For_char_list =
  Make
    (Transept_stream.Via_list)
    (struct
      type t = char
    end)
OCaml

Innovation. Community. Security.