package ocaml-protoc

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

Source file pb_option.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
type constant =
  | Constant_string of string
  | Constant_bool of bool
  | Constant_int of int
  | Constant_float of float
  | Constant_litteral of string

type option_name = string
type t = option_name * constant
type set = t list

let empty = []
let add t option_name constant = (option_name, constant) :: t
let merge t1 t2 = t2 @ t1

let get t option_name =
  match List.assoc option_name t with
  | c -> Some c
  | exception Not_found -> None
OCaml

Innovation. Community. Security.