1Role::Commons::ObjectIDU(s3e)r Contributed Perl DocumentaRtoiloen::Commons::ObjectID(3)
2
3
4

NAME

6       Role::Commons::Authority - an object method providing a unique
7       identifier
8

SYNOPSIS

10          use v5.14;
11
12          package Person 1.0 {
13             use Moo;
14             use Role::Commons -all;
15             has name => (is => 'ro');
16          };
17
18          my $bob1 = Person->new(name => "Bob");
19          my $bob2 = Person->new(name => "Bob");
20
21          say $bob1->object_id;  # an identifier
22          say $bob2->object_id;  # a different identifier
23

DESCRIPTION

25       This is a tiny shim between Object::ID and Role::Commons (and hence
26       Moo::Role/Moose::Role too).
27

BUGS

29       Please report any bugs to
30       <http://rt.cpan.org/Dist/Display.html?Queue=Role-Commons>.
31

SEE ALSO

33       Role::Commons, Object::ID.
34

AUTHOR

36       Toby Inkster <tobyink@cpan.org>.
37
39       This software is copyright (c) 2012, 2014 by Toby Inkster.
40
41       This is free software; you can redistribute it and/or modify it under
42       the same terms as the Perl 5 programming language system itself.
43

DISCLAIMER OF WARRANTIES

45       THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
46       WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
47       MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
48
49
50
51perl v5.30.0                      2019-07-26        Role::Commons::ObjectID(3)
Impressum