v / vlib / math
Raw file | 9 loc (7 sloc) | 125 bytes | Latest commit hash 1cfc4198f
1module math
2
3fn JS.Math.tan(x f64) f64
4
5// tan calculates tangent.
6[inline]
7pub fn tan(a f64) f64 {
8 return JS.Math.tan(a)
9}