Module Scalar.Operation

type 'mode info = {
  1. can_raise : bool;
  2. result : 'mode t;
}
module Unary : sig ... end
module Binary : sig ... end
type 'mode t =
  1. | Unary of 'mode Unary.t
  2. | Binary of 'mode Binary.t
val map : 'a t -> f:('a -> 'b) -> 'b t
val arity : _ t -> int
val info : 'a t -> 'a info
val to_string : any_locality_mode t -> string
module With_percent_prefix : sig ... end