NAME
Mango::BSON::Time - Datetime type
SYNOPSIS
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 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.
OPERATORS
Mango::BSON::Time overloads the following operators.
bool
my
$bool
= !!
$time
;
Always true.
stringify
my
$str
=
"$time"
;
Alias for "to_string".