It’s the 0x10th day of Christmas, and it’s time for you to learn of time. The synopsis S32::Temporal has been heavily revised in the past year, and today’s post details some of the basics of time as it is implemented in Perl 6.
time and now
The two terms that give the current time (at least what your system thinks is the current time) are time
; and now
. Here’s a quick example:
> say time; say now;
1292460064
Instant:2010-12-16T00:41:4.873248Z
The first (obvious) difference is that time
returns POSIX time, as an integer. now
returns an object known as an Instant
. Use now
if you want fractions of a second and recognition of leap seconds. time
won’t give you fractions of a second or leap seconds, because it returns POSIX time. Which one you use all depends on what you need.
DateTime and friend
Most of the time, you will want to store dates other than now. For this, the DateTime
object is what you need. If you want to store the current time, you can use:
my $moment = DateTime.new(now); # or DateTime.new(time)
Otherwise, there are two ways of creating a DateTime object:
my $dw = DateTime.new(:year(1963), :month(11), :day(23), :hour(17), :minute(15));
This is in UTC, if you want to enter it in in another timezone, use the :timezone
adverb. Here, only :year
is required, the rest defaults to midnight on January 1 of the year.
This way is also pretty tedious. You could instead create a DateTime object by inputting an ISO 8601 timestamp, as a string.
my $dw = DateTime.new("1963-11-23T17:15:00Z");
The Z denotes UTC. To change that, replace Z with +hhmm or -hhmm, where ‘hh’ is the number of hours offset and ‘mm’ the number of minutes.
There is also a Date object, which is created in a similar way, but without hours, minutes, or seconds. For example:
my $jfk = Date.new("1963-11-22"); # you can also use :year and so on
The introduction of the Date object is actually a lesson from CPAN’s DateTime module: sometimes you want to treat days without having to worry about things like time zones and leap seconds. It’s inherently easier to handle pure dates. For example Date has built-in .succ and .pred methods, so you can increment and decrement them in your code.
$jfk++; # Day after JFK
Finally…
That’s about it for Time in P6. To see all the gritty details go to the Temporal specification or ask about it in the community!