meanFirst function

double meanFirst(
  1. double year
)

JDE of the mean First Quarter nearest the given decimal year.

Implementation

double meanFirst(double year) => _mean(_snap(year, 0.25) * _ck);