package ocaml-protoc-plugin

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

Source file infix.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module Int64 = struct
  open Int64
  let (land) = logand
  let (lsl) = shift_left
  let (lsr) = shift_right_logical
  let (lor) = logor
  let (lxor) = logxor
  let (+) = add
  let (/) = div
  let ( * ) = mul
  let (-) = sub
end

module Int = struct
  open Int
  let (land) = logand
  let (lsl) = shift_left
  let (lsr) = shift_right_logical
  let (lor) = logor
  let (lxor) = logxor
  let (+) = add
  let (/) = div
  let ( * ) = mul
  let (-) = sub
end
OCaml

Innovation. Community. Security.