Function exp [src]

Base-e exponential function on a floating point number. Uses a dedicated hardware instruction when available. This is the same as calling the builtin @exp

Prototype

pub inline fn exp(value: anytype) @TypeOf(value)

Source

pub inline fn exp(value: anytype) @TypeOf(value) { return @exp(value); }