Mango::BSON::Time - Datetime type
Contents
Description
Mango::BSON::Time is a container for the BSON datetime type used by Mango::BSON.
Methods
Mango::BSON::Time inherits all methods from Mojo::Base and implements the following new ones.
new
my $time = Mango::BSON::Time->new;
my $time = Mango::BSON::Time->new(time * 1000);
Construct a new Mango::BSON::Time object.
TO_JSON
my $num = $time->TO_JSON;
Numeric representation of time.
to_datetime
my $str = $time->to_datetime;
Convert time to RFC 3339 <http://tools.ietf.org/html/rfc3339> date and time.
to_epoch
my $epoch = $time->to_epoch;
Convert time to floating seconds since the epoch.
to_string
my $str = $time->to_string;
Stringify time.
Name
Mango::BSON::Time - Datetime type
Operators
Mango::BSON::Time overloads the following operators.
bool
my $bool = !!$time;
Always true.
stringify
my $str = "$time";
Alias for "to_string".
See Also
Mango, Mojolicious::Guides, <http://mojolicio.us>.
perl v5.30.3 2020-06-05 Mango::BSON::Time(3pm)
Synopsis
use Mango::BSON::Time;
my $time = Mango::BSON::Time->new(time * 1000);
say $time->to_epoch;
