logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

DateTime::LeapSecond - leap seconds table and utilities

Author

       Dave Rolsky <autarch@urth.org>

Description

       This module is used to calculate leap seconds for a given Rata Die day. It is used when DateTime cannot
       compile the XS version of this code.

       This library is known to be accurate for dates until Jun 2020.

       There are no leap seconds before 1972, because that's the year this system was implemented.

       •   leap_seconds($rd)

           Returns the number of accumulated leap seconds for a given day.

       •   extra_seconds($rd)

           Returns the number of leap seconds for a given day, in the range -2 .. 2.

       •   day_length($rd)

           Returns the number of seconds for a given day, in the range 86398 .. 86402.

Name

       DateTime::LeapSecond - leap seconds table and utilities

See Also

Source

       The source code repository for DateTime can be found at <https://github.com/houseabsolute/DateTime.pm>.

Support

       Bugs may be submitted at <https://github.com/houseabsolute/DateTime.pm/issues>.

       There is a mailing list available for users of this distribution, <mailto:datetime@perl.org>.

Synopsis

           use DateTime;
           use DateTime::LeapSecond;

           print "Leap seconds between years 1990 and 2000 are ";
           print DateTime::Leapsecond::leap_seconds($utc_rd_2000)
               - DateTime::Leapsecond::leap_seconds($utc_rd_1990);

Version

       version 1.65

See Also