Generate a Date or Datetime in a range
Returns a generator spec that draws a Date uniformly between
start and end (inclusive). Bounds must be both
Dates or both Datetimes; a Datetime range keeps the start bound’s
timezone. Use parse_date, today, or
parse_datetime to build bounds.
start (Date): | Datetime Lower
bound (inclusive).
end (Date): | Datetime Upper bound
(inclusive).
A generator spec.
g = prop_gen_date_range(parse_date("2020-01-01"), parse_date("2020-12-31"))