Help language development. Donate to The Perl Foundation
Raku port of Perl's Time::localtime module
use Time::localtime;
printf "Year is %d\n", localtime.year + 1900;
$now = ctime();
use Time::localtime;
$date_string = ctime($file.IO.modified);
This module tries to mimic the behaviour of Perl's Time::gmtime
module as closely as possible in the Raku Programming Language.
This module's default exports a localtime
and ctime
functions. The localtime
function returns a "Time::localtime" object. This object has methods that return the similarly named structure field name from the C's tm structure from time.h; namely sec, min, hour, mday, mon, year, wday, yday, and isdst.
You may also import all the structure fields directly into your namespace as regular variables using the :FIELDS import tag. (Note that this still exports the functions.) Access these fields as variables named with a preceding tm_. Thus, $group_obj.year
corresponds to $tm_year
if you import the fields.
The ctime
function provides a way of getting at the scalar sense of the localtime
function in Perl.
This module depends on the availability of POSIX semantics. This is generally not available on Windows, so this module will probably not work on Windows.
Elizabeth Mattijsen [email protected]
Source can be located at: https://github.com/lizmat/Time-localtime . Comments and Pull Requests are welcome.
Copyright 2018-2020 Elizabeth Mattijsen
Re-imagined from Perl as part of the CPAN Butterfly Plan.
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.