package tezos-webassembly-interpreter

  1. Overview
  2. Docs
type t
type bits = string
type ('i8x16, 'i16x8, 'i32x4, 'i64x2, 'f32x4, 'f64x2) laneop =
  1. | I8x16 of 'i8x16
  2. | I16x8 of 'i16x8
  3. | I32x4 of 'i32x4
  4. | I64x2 of 'i64x2
  5. | F32x4 of 'f32x4
  6. | F64x2 of 'f64x2
type shape = (unit, unit, unit, unit, unit, unit) laneop
val bitwidth : int
val num_lanes : ('a, 'b, 'c, 'd, 'e, 'f) laneop -> int
val type_of_lane : ('a, 'b, 'c, 'd, 'e, 'f) laneop -> Types.num_type
val string_of_shape : ('a, 'b, 'c, 'd, 'e, 'f) laneop -> string
val zero : t
val of_bits : bits -> t
val to_bits : t -> bits
val to_string : t -> string
val to_hex_string : t -> string
val of_strings : shape -> string list -> t
val pp : Format.formatter -> t -> unit
module type IntShape = sig ... end
module type FloatShape = sig ... end
module I8x16 : IntShape with type lane = I8.t
module I16x8 : IntShape with type lane = I16.t
module I32x4 : IntShape with type lane = I32.t
module I64x2 : IntShape with type lane = I64.t
module F32x4 : FloatShape with type lane = F32.t
module F64x2 : FloatShape with type lane = F64.t
module V1x128 : sig ... end
module V8x16 : sig ... end
module I8x16_convert : sig ... end
module I16x8_convert : sig ... end
module I32x4_convert : sig ... end
module I64x2_convert : sig ... end
module F32x4_convert : sig ... end
module F64x2_convert : sig ... end