The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

pEFL::Time

SYNOPSIS

  use pEFL::Time;
  my $tm = pEFL::Time->new(localtime(time));
  my $tm = pEFL::Time->localtime(time);
  my $tm = pEFL::Time->gmtime(time);
  my $sec = $tm->tm_sec;
  my $min = $tm->tm_min;
  my $hour = $tm->tm_hour;
  [...]

DESCRIPTION

This module is a perl binding to the Efl_Time struct which is an alias for the struct tm.

EXPORT

None by default.

SEE ALSO

https://www.enlightenment.org/develop/api/efl/time

AUTHOR

Maximilian Lika

COPYRIGHT AND LICENSE

Copyright (C) 2022 by Maximilian Lika

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.28.1 or, at your option, any later version of Perl 5 you may have available.