package tezos-webassembly-interpreter

  1. Overview
  2. Docs
type unop =
  1. | Neg
  2. | Abs
  3. | Ceil
  4. | Floor
  5. | Trunc
  6. | Nearest
  7. | Sqrt
type binop =
  1. | Add
  2. | Sub
  3. | Mul
  4. | Div
  5. | Min
  6. | Max
  7. | CopySign
type testop = |
val show_testop : testop -> Ppx_deriving_runtime.string
type relop =
  1. | Eq
  2. | Ne
  3. | Lt
  4. | Gt
  5. | Le
  6. | Ge
type cvtop =
  1. | ConvertSI32
  2. | ConvertUI32
  3. | ConvertSI64
  4. | ConvertUI64
  5. | PromoteF32
  6. | DemoteF64
  7. | ReinterpretInt