| KiokuDB documentation | Contained in the KiokuDB distribution. |
KiokuDB::Set::Storage - Role for KiokuDB::Sets that are tied to storage.
# informational role, used internally
This role is informational, and implemented by KiokuDB::Set::Deferred and KiokuDB::Set::Loaded
| KiokuDB documentation | Contained in the KiokuDB distribution. |
#!/usr/bin/perl package KiokuDB::Set::Storage; use Moose::Role; use Set::Object; use namespace::clean -except => 'meta'; with qw(KiokuDB::Set); __PACKAGE__ __END__