GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Mango::BSON::ObjectID(3) User Contributed Perl Documentation Mango::BSON::ObjectID(3)

Mango::BSON::ObjectID - Object ID type

  use Mango::BSON::ObjectID;

  my $oid = Mango::BSON::ObjectID->new('1a2b3c4e5f60718293a4b5c6');
  say $oid->to_epoch;

Mango::BSON::ObjectID is a container for the BSON object id type used by Mango::BSON.

Mango::BSON::ObjectID inherits all methods from Mojo::Base and implements the following new ones.

  my $oid = $oid->from_epoch(1359840145);

Generate new object id with specific epoch time.

  my $oid = Mango::BSON::ObjectID->new;
  my $oid = Mango::BSON::ObjectID->new('1a2b3c4e5f60718293a4b5c6');

Construct a new Mango::BSON::ObjectID object.

  my $bytes = $oid->to_bytes;

Object id in binary form.

  my $epoch = $oid->to_epoch;

Extract epoch seconds from object id.

  my $str = $oid->to_string;

Stringify object id.

Mango::BSON::ObjectID overloads the following operators.

  my $bool = !!$oid;

Always true.

  my $str = "$oid";

Alias for "to_string".

Mango, Mojolicious::Guides, <http://mojolicio.us>.
2018-03-17 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.