full function

double full(
  1. double year
)

JDE of Full Moon nearest the given decimal year.

Implementation

double full(double year) {
  final m = _Mp(year, 0.5);
  return _mean(m.t) + m._nfc(_fc) + m._a();
}