Core.Percent
SourceA scale factor, not bounded between 0% and 100%, represented as a float.
Exposing that this is a float allows for more optimization. E.g. compiler can optimize some local refs and not box them.
of_string
and t_of_sexp
disallow nan
, inf
, etc. Furthermore, they round to 6 significant digits. They are equivalent to Stable.V2
sexp conversion.
Equivalent to Stable.V3.to_string
Sexps are of the form 5bp or 0.05% or 0.0005x.
Warning: equal (t) (t_of_sexp (sexp_of_t t))
is not guaranteed.
First, sexp_of_t truncates to 6 significant digits. Second, multiple serialization round-trips may cause further multiple small drifts.
The sexp conversion here is V2 and not V3 to avoid breaking existing code at the time V3 was introduced (Nov 2022).
New code should explicitly use Percent.Stable.V3 for faithful round-trippable sexp conversion.
include Sexplib.Sexp_grammar.S with type t := t
include Interfaces.Binable with type t := t
include Bin_prot.Binable.S_only_functions with type t := t
This function only needs implementation if t
exposed to be a polymorphic variant. Despite what the type reads, this does *not* produce a function after reading; instead it takes the constructor tag (int) before reading and reads the rest of the variant t
afterwards.
include Interfaces.Comparable_binable with type t := t
include Base.Comparable.S with type t := t
include Base.Comparisons.S with type t := t
compare t1 t2
returns 0 if t1
is equal to t2
, a negative integer if t1
is less than t2
, and a positive integer if t1
is greater than t2
.
ascending
is identical to compare
. descending x y = ascending y x
. These are intended to be mnemonic when used like List.sort ~compare:ascending
and List.sort ~cmp:descending
, since they cause the list to be sorted in ascending or descending order, respectively.
clamp_exn t ~min ~max
returns t'
, the closest value to t
such that between t' ~low:min ~high:max
is true.
Raises if not (min <= max)
.
include Base.Comparator.S with type t := t
include Comparator.S
with type t := t
with type comparator_witness := comparator_witness
module Map :
Map.S_binable
with type Key.t = t
with type Key.comparator_witness = comparator_witness
module Set :
Set.S_binable
with type Elt.t = t
with type Elt.comparator_witness = comparator_witness
include Diffable.S_atomic with type t := t
apply t x
multiplies the percent t
by x
, returning a float.
scale t x
scales the percent t
by x
, returning a new t
.
of_mult 5.
is 5x = 500% = 50_000bp
of_percentage 5.
is 5% = 0.05x = 500bp. Note: this function performs float division by 100.0 and it may introduce rounding errors, for example:
of_percentage 70.18 |> to_mult = 0.70180000000000009
It is also not consistent with of_string
or t_of_sexp
for "%"-ending strings. The results can be off by an ulp. If this matters to you, use of_percentage_slow_more_accurate
instead.
Like of_percentage
, but consistent with of_string
and t_of_sexp
, that is, of_percentage_slow_more_accurate x = of_string (Float.to_string x ^ "%")
to_percentage (Percent.of_string "5%")
is 5.0. Note: this function performs float multiplication by 100.0 and it may introduce rounding errors, for example:
to_percentage (Percent.of_mult 0.56) = 56.000000000000007
It is also not consistent with Stable.V3.sexp_of_t
or to_string_round_trippable
. If this matters to you, use to_percentage_slow_more_accurate
instead.
Like to_percentage
, but consistent with Stable.V3.sexp_of_t
and to_string_round_trippable
.
of_bp 5.
is 5bp = 0.05% = 0.0005x. Note: this function performs float division by 10,000.0 and it may introduce rounding errors, for example:
of_bp 70.18 |> to_mult = 0.0070180000000000008
It is also not consistent with of_string
or t_of_sexp
for "bp"-ending strings. The results can be off by an ulp. If this matters to you, use of_bp_slow_more_accurate
instead.
Like of_bp
, but consistent with of_string
and t_of_sexp
, that is, of_bp_slow_more_accurate x = of_string (Float.to_string x ^ "bp")
to_bp (Percent.of_bp "4bp")
is 4.0. Note: this function performs float multiplication by 10000.0 and and it may introduce rounding errors, for example:
to_bp (Percent.of_mult 0.56) = 5600.0000000000009
It is also not consistent with Stable.V3.sexp_of_t
or to_string_round_trippable
. If this matters to you, use to_bp_slow_more_accurate
instead.
Like to_bp
, but consistent with Stable.V3.sexp_of_t
and to_string_round_trippable
.
rounds down
0.0123456% ~significant_digits:4 is 1.235bp
0.0123456% ~decimal_digits:4 is 0.0001 = 1bp
0.0123456% ~decimal_digits:4 is 0.0123% = 1.23bp
0.0123456% ~decimal_digits:4 is 1.2346bp
A Format.t
tells Percent.format
how to render a floating-point value as a string, like a printf
conversion specification.
The sign of a Percent.t
. Both -0.
and 0.
map to Zero
. Raises on nan. All other values map to Neg
or Pos
.
Does not format small values as "3bp" or large ones as "2x"; always uses percentages ("0.0003%" or "200%"). The standard of_sexp
can read these just fine.
Similar to Stable.V3
, but rounds to 14 significant digits in order to make the output more palatable to humans, at the cost of making it not exactly round-trippable, e.g.