package janestreet_cpuid

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

Source file cpuid_intf.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
open Core

module Basic_info = struct
  type t =
    { maximum_value : int
    ; brand : string
    }
end

module type S = sig
  type t

  val canonical_identifier : t -> string
  val maximum_leaf : t -> int
  val kind : t Type_equal.Id.t
  val create : Basic_info.t -> t
end
OCaml

Innovation. Community. Security.