Function sinh [src]
Alias for std.math.sinh.sinh
Returns the hyperbolic sine of x.
Special Cases:
sinh(+-0) = +-0
sinh(+-inf) = +-inf
sinh(nan) = nan
Prototype
pub fn sinh(x: anytype) @TypeOf(x)
Example
test sinh {
try expect(sinh(@as(f32, 1.5)) == sinh32(1.5));
try expect(sinh(@as(f64, 1.5)) == sinh64(1.5));
}
Source
pub fn sinh(x: anytype) @TypeOf(x) {
const T = @TypeOf(x);
return switch (T) {
f32 => sinh32(x),
f64 => sinh64(x),
else => @compileError("sinh not implemented for " ++ @typeName(T)),
};
}