GitXplorerGitXplorer
t

DateTime-Math-More

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
331f6f57e06356abb952a6e18e7e2359604faf69

save all

ttbrowder committed 7 years ago
Unverified
0b34f218ccfc0f0162f73d7133d7f7c5355de2b9

save work

ttbrowder committed 7 years ago
Unverified
00460cbf9d01eeac6c41d19ad302de57eb67d564

add, update

ttbrowder committed 8 years ago
Unverified
04948739e0d75dbab389e5f62f4a8b47c74af51a

fix build icon

ttbrowder committed 8 years ago
Unverified
b2621dee4c35fa4ba48f6707e1d5de50c632997e

-ano funcs yet, thus no tests

ttbrowder committed 8 years ago
Unverified
efaf0aee933f0c7c5871c51ed368fa87031b838c

add

ttbrowder committed 8 years ago

README

The README file for this repository.

DateTime::Math::More Build Status

Provides some additional DateTime math functions:

nth-weekday-of-month( UInt :$nth!, # integer, e.g., 1 for the first weekday W in the month Str :$weekday!, # first two letters of the day of the week of interest # (case insensitive) :$year = Date.today.year, # starting year of interest (yyyy) :$mon = Date.today.month, # starting month of interest (first three letters or # number 1..12; case insensitive) UInt :$num = 12, # number of dates to list --> List) # returns list of Date objects

nth-weekday-before-date( UInt :$nth!, # integer, e.g., 1 for the first weekday W before a date Str :$weekday!, # first two letters of the day of the week of interest Date :$date! # (case insensitive) --> Date)