method
weeknum_to_jd
v1_9_2_180 -
Show latest stable
- Class:
Date
weeknum_to_jd(y, w, d, f=0, sg=GREGORIAN)public
No documentation available.
# File lib/date.rb, line 467
def weeknum_to_jd(y, w, d, f=0, sg=GREGORIAN) # :nodoc:
a = find_fdoy(y, sg) + 6
(a - ((a - f) + 1) % 7 - 7) + 7 * w + d
end