| KiokuDB documentation | Contained in the KiokuDB distribution. |
KiokuDB::TypeMap::Entry::Std::ID - Provides a default compile_id method
TODO
This role provides a default compile_id method. It is designed to be used in conjunction with other roles to create a full KiokuDB::TypeMap::Entry implementation.
| KiokuDB documentation | Contained in the KiokuDB distribution. |
package KiokuDB::TypeMap::Entry::Std::ID; use Moose::Role; use namespace::clean -except => 'meta'; sub compile_id { my ( $self, $class, @args ) = @_; return "generate_uuid"; } __PACKAGE__ __END__