package user-agent-parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t
type result = {
  1. family : string;
  2. major : string option;
  3. minor : string option;
  4. patch : string option;
}
val equal_result : result -> result -> Ppx_deriving_runtime.bool
val pp_result : Ppx_deriving_runtime.Format.formatter -> result -> Ppx_deriving_runtime.unit
val show_result : result -> Ppx_deriving_runtime.string
val init : unit -> t
val parse : t -> string -> result