package ocaml-protoc-plugin

  1. Overview
  2. Docs

This module provides result type and functions for compatibility * with OCaml 4.06

type error = [
  1. | `Premature_end_of_input
  2. | `Unknown_field_type of int
  3. | `Wrong_field_type of string * Ocaml_protoc_plugin__.Field.t
  4. | `Illegal_value of string * Ocaml_protoc_plugin__.Field.t
  5. | `Unknown_enum_value of int
  6. | `Oneof_missing
  7. | `Required_field_missing
]
type 'a t = ('a, error) result
val (>>|) : ('a, 'b) result -> ('a -> 'c) -> ('c, 'b) result
val (>>=) : ('a, 'b) result -> ('a -> ('c, 'b) result) -> ('c, 'b) result
val open_error : ('a, [< error ]) result -> ('a, [> `Illegal_value of string * Ocaml_protoc_plugin__.Field.t | `Oneof_missing | `Premature_end_of_input | `Required_field_missing | `Unknown_enum_value of int | `Unknown_field_type of int | `Wrong_field_type of string * Ocaml_protoc_plugin__.Field.t ]) result
val return : 'a -> ('a, 'b) result
val fail : 'a -> ('b, 'a) result
val get : msg:string -> ('a, 'b) result -> 'a
val pp_error : Format.formatter -> error -> unit
val show_error : error -> string
val pp : (Format.formatter -> 'a -> unit) -> Format.formatter -> ('a, [< error ]) result -> unit
OCaml

Innovation. Community. Security.