Function exp2 [src]
Base-2 exponential function on a floating point number.
Uses a dedicated hardware instruction when available.
This is the same as calling the builtin @exp2
Prototype
pub inline fn exp2(value: anytype) @TypeOf(value)
Source
pub inline fn exp2(value: anytype) @TypeOf(value) {
return @exp2(value);
}