Use the AND operator (&) in cron strings
masterBy default, standard cron treats the day-of-month and day-of-week fields as an OR relationship (the job runs if either matches).
Since Fugit 1.7.0, you can force an AND relationship by adding an ampersand (&) immediately after a day specifier. This is useful for specifying requirements like "the first Monday of the month".
Example: 0 5 1-7 * 1& means "at 05:00, on days 1 through 7 AND on Monday".
# Standard cron (OR logic): runs on 1st-7th OR every Monday
p Fugit.parse_cron('59 6 1-7 * 2').next_time('2020-03-15')
# With & (AND logic): runs on 1st-7th AND on Tuesday
p Fugit.parse_cron('59 6 1-7* 2&').next_time('2020-03-15')