secant function

double secant(
  1. Angle a
)

The ratio of the hypotenuse to the shorter side adjacent to an acute angle; the reciprocal of a cosine.

Implementation

double secant(Angle a) => a.secant();