Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tbrowder/date-calc
Raku (aka Perl 6) port of Perl's module Date::Calc
https://github.com/tbrowder/date-calc
Last synced: about 1 month ago
JSON representation
Raku (aka Perl 6) port of Perl's module Date::Calc
- Host: GitHub
- URL: https://github.com/tbrowder/date-calc
- Owner: tbrowder
- Created: 2019-08-17T12:01:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-19T16:30:46.000Z (over 5 years ago)
- Last Synced: 2024-12-09T19:50:09.821Z (about 2 months ago)
- Language: Perl 6
- Size: 17.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Date::Calc
## A Raku (aka Perl 6) port of Perl's module `Date::Calc`
This is currently a partial implementation of `Date::Calc`. Currently usable
functions are listed below. Submit an issue if there is a `Date::Calc`
function you want added to the list.Implemented functions are available with two naming systems: (1) named
as in the original module and (2) named in Raku's kebab case (with all
letters after the first in lower case and underscores changed to
hyphens). For example, `Days_in_Year` will also be available as
`Days-in-year`. (The case of the first letter is preserved to satisfy
the convention in the original Date::Calc that functions with
lower-case first letters in their names return Boolean values.)For complete details of the module's contents, see the documentation
on the CPAN site for
[Date::Calc](https://metacpan.org/pod/distribution/Date-Calc/lib/Date/Calc.pod).## Available `Date::Calc` functions
| Usual name | Kebab name | Notes |
| :--- | :--- | :--- |
| Add_Delta_DHMS | Add-delta-dhms | |
| Day_of_Year | Day-of-year | |
| Decode_Month | Decode-month | English only |## Other functions available
+ month-to-mm - same as `Decode_month` except numbers are formatted to two-digit strings, e.g., `01`..`12`
# LICENSE
Artistic-2.0
# COPYRIGHT