Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
include module type of struct include Ocaml_intrinsics_kernel.Conditional end
select_value c a b
is equivalent to if c then a else b)
where a
and b
are eagerly evaluated, regardless of the value of c
. Compiles to CMOV instruction on amd64 targets. Can be used to avoid branch misprediction when c
is data dependent.