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