Module Currency.Fee_rate

type t
val add : t -> t -> t option
val add_flagged : t -> t -> t * [ `Overflow of bool ]
val sub : t -> t -> t option
val sub_flagged : t -> t -> t * [ `Underflow of bool ]
val (+) : t -> t -> t option
val (-) : t -> t -> t option
val scale : t -> int -> t option
include Core_kernel.Comparable.S with type t := t
val (>=) : t -> t -> bool
val (<=) : t -> t -> bool
val (=) : t -> t -> bool
val (>) : t -> t -> bool
val (<) : t -> t -> bool
val (<>) : t -> t -> bool
val equal : t -> t -> bool
val compare : t -> t -> int
val min : t -> t -> t
val max : t -> t -> t
val ascending : t -> t -> int
val descending : t -> t -> int
val between : t -> low:t -> high:t -> bool
val clamp_exn : t -> min:t -> max:t -> t
val clamp : t -> min:t -> max:t -> t Base__.Or_error.t
type comparator_witness
val comparator : ( t, comparator_witness ) Base__Comparator.comparator
val validate_lbound : min:t Base__.Maybe_bound.t -> t Base__.Validate.check
val validate_ubound : max:t Base__.Maybe_bound.t -> t Base__.Validate.check
val validate_bound : min:t Base__.Maybe_bound.t -> max:t Base__.Maybe_bound.t -> t Base__.Validate.check
module Replace_polymorphic_compare : sig ... end
module Map : sig ... end
module Set : sig ... end
include Core_kernel.Sexpable.S with type t := t
val t_of_sexp : Sexplib0__.Sexp.t -> t
val sexp_of_t : t -> Sexplib0__.Sexp.t
val of_q : Q.t -> t option
val of_q_exn : Q.t -> t
val to_q : t -> Q.t
val make : Fee.t -> int -> t option

construct a fee rate from a fee and a weight

val make_exn : Fee.t -> int -> t

construct a fee rate from a fee and a weight

val to_uint64 : t -> Unsigned.uint64 option

convert to uint64, if the fee rate is equivalent to an integer.

val to_uint64_exn : t -> Unsigned.uint64

convert to uint64, if the fee rate is equivalent to an integer.

val mul : t -> t -> t option
val scale_exn : t -> int -> t
val div : t -> t -> t option
val (*) : t -> t -> t option